diff --git a/README.md b/README.md index a21f137..0e4433c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Maintainability](https://api.codeclimate.com/v1/badges/adf5dcf95b53da6c741f/maintainability)](https://codeclimate.com/github/timorthi/export-workflow-logs/maintainability) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -`export-workflow-logs` is a GitHub Action to automatically export the logs of a GitHub Actions Workflow run to popular cloud storage solutions like Amazon S3 and Azure Blob Storage. +`export-workflow-logs` is a GitHub Action to automatically export the logs of a GitHub Actions Workflow run to popular cloud storage solutions like Amazon S3, Azure Blob Storage, and Google Cloud Storage. The logs for workflow run are only [available for a limited time](https://docs.github.com/en/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization) before they are automatically deleted. This Action moves workflow run logs to longer term storage to make them easily accessible in the future for auditing purposes. @@ -77,11 +77,11 @@ This Action only supports one environment variable: set `DEBUG` to `true` to ena The following inputs are required regardless of the chosen destination: -| Name | Description | -| ------------- | ------------------------------------------------------------------------------------------------------------------ | -| `repo-token` | Token to use to fetch workflow logs. Typically the `GITHUB_TOKEN` secret. | -| `run-id` | The workflow run ID for which to export logs. Typically obtained via the `github` context per the above example. | -| `destination` | The service to export workflow logs to. Supported values: [`s3`](#amazon-s3), [`blobstorage`](#azure-blob-storage) | +| Name | Description | +| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `repo-token` | Token to use to fetch workflow logs. Typically the `GITHUB_TOKEN` secret. | +| `run-id` | The workflow run ID for which to export logs. Typically obtained via the `github` context per the above example. | +| `destination` | The service to export workflow logs to. Supported values: [`s3`](#amazon-s3), [`blobstorage`](#azure-blob-storage), [`cloudstorage`](#google-cloud-storage) | ### [Amazon S3](https://aws.amazon.com/s3/) @@ -111,6 +111,19 @@ The following inputs are required if `destination` is `blobstorage`: | `container-name` | The name of the Blob Storage Container to upload to | | `blob-name` | Blob name to save the workflow logs as | +### [Google Cloud Storage](https://cloud.google.com/storage/) + +[Example](examples/google-cloud-storage/) + +The Cloud Storage exporter uses the Object Writer API to save the workflow logs file. + +The following inputs are required if `destination` is `cloudstorage`: + +| Name | Description | +| --------------------------- | -------------------------------------------------------- | +| `cloud-storage-bucket-name` | The name of the Google Cloud Storage bucket to upload to | +| `cloud-storage-object-name` | Object name to save the workflow logs as | + ## Development ### Testing diff --git a/examples/google-cloud-storage/README.md b/examples/google-cloud-storage/README.md new file mode 100644 index 0000000..321b5fe --- /dev/null +++ b/examples/google-cloud-storage/README.md @@ -0,0 +1,3 @@ +The Google Cloud Storage exporter uses the [Google Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go#hdr-Authentication_and_Authorization) under the hood. + +This exporter does not accept Action-level inputs for credentials or path to credentials files. Authenticating to GCP via [google-github-actions/auth](https://github.com/google-github-actions/auth) is recommended. diff --git a/examples/google-cloud-storage/export-logs.yml b/examples/google-cloud-storage/export-logs.yml new file mode 100644 index 0000000..e57e485 --- /dev/null +++ b/examples/google-cloud-storage/export-logs.yml @@ -0,0 +1,29 @@ +name: Export To Google Cloud Storage +on: + workflow_run: + workflows: [Hello World] + types: [completed] +jobs: + export-hello-world-logs: + permissions: + contents: "read" + id-token: "write" + actions: "read" + + runs-on: ubuntu-latest + steps: + - uses: "actions/checkout@v4" + + - uses: "google-github-actions/auth@v2" + with: + project_id: "foo-project" + service_account: "srv-gh-logs-exporter@foo-project.iam.gserviceaccount.com" + workload_identity_provider: "projects/1234567/locations/global/workloadIdentityPools/foo/providers/bar" + + - uses: timorthi/export-workflow-logs@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + run-id: ${{ github.event.workflow_run.id }} + destination: cloudstorage + cloud-storage-bucket-name: foo-workflow-logs + cloud-storage-object-name: ${{ github.event.workflow_run.name }}/${{ github.event.workflow_run.created_at }}-runId${{ github.event.workflow_run.id }}.zip diff --git a/examples/google-cloud-storage/hello-world.yml b/examples/google-cloud-storage/hello-world.yml new file mode 100644 index 0000000..bb06195 --- /dev/null +++ b/examples/google-cloud-storage/hello-world.yml @@ -0,0 +1,8 @@ +name: Hello World +on: workflow_dispatch +jobs: + hello-world: + runs-on: ubuntu-latest + steps: + - name: Print Hello World + run: echo "Hello World!"