fix chart publishing (#2916) #226
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CD / OCI Authentication Sidecar | |
| on: | |
| pull_request: | |
| branches: | |
| - "master" | |
| paths: | |
| - "go/oci-auth/**" | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| permissions: | |
| contents: read | |
| env: | |
| GOPATH: /home/runner/go | |
| GOBIN: /home/runner/go/bin | |
| GOPROXY: "https://proxy.golang.org" | |
| jobs: | |
| test: | |
| name: Unit test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: go/oci-auth | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
| with: | |
| go-version-file: go/oci-auth/go.mod | |
| cache: true | |
| - run: go mod download | |
| - run: PATH=$PATH:$GOPATH/bin make test | |
| publish-docker: | |
| name: Build and push oci-auth container | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: go/oci-auth | |
| needs: [ test ] | |
| permissions: | |
| contents: 'read' | |
| id-token: 'write' | |
| packages: 'write' | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| with: | |
| fetch-depth: 0 | |
| - id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| ghcr.io/pluralsh/oci-auth | |
| gcr.io/pluralsh/oci-auth | |
| docker.io/pluralsh/oci-auth | |
| - uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: google-github-actions/auth@v1 | |
| with: | |
| workload_identity_provider: 'projects/${{ secrets.GOOGLE_PROJECT_ID }}/locations/global/workloadIdentityPools/github/providers/github' | |
| service_account: '[email protected]' | |
| token_format: 'access_token' | |
| create_credentials_file: true | |
| - uses: google-github-actions/[email protected] | |
| - run: gcloud auth configure-docker -q | |
| - uses: docker/login-action@v3 | |
| with: | |
| username: mjgpluralsh | |
| password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: docker/[email protected] | |
| - uses: docker/[email protected] | |
| with: | |
| context: "./go" | |
| file: "./go/oci-auth/Dockerfile" | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| platforms: linux/amd64,linux/arm64 | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| build-args: | | |
| GIT_COMMIT=${{ github.sha }} | |
| VERSION=${{ steps.meta.outputs.version }} |