Update push.yaml #9
This file contains 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: push | |
on: push | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- run: go test -v -cover $(go list ./... | grep -v /vendor) | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-X main.SHA=${{ github.sha }}" -o bin/vaultcreds cmd/*.go | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: bin | |
path: bin/ | |
docker-build-push: | |
#if: github.ref_name == 'master' || startsWith(github.ref, 'refs/tags/v') | |
needs: [test, build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Docker buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Quay.io | |
if: github.repository == 'uswitch/vault-creds' | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- id: meta | |
if: github.repository == 'uswitch/vault-creds' | |
uses: docker/metadata-action@v4 | |
with: | |
images: quay.io/uswitch/vault-creds | |
tags: | | |
type=semver,pattern=v{{version}} | |
type=sha,prefix=,format=long, | |
- uses: docker/build-push-action@v4 | |
if: github.repository == 'uswitch/vault-creds' | |
with: | |
context: . | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
build-args: LDFLAGS=-X main.SHA=${{ github.sha }} | |
- name: Log into registry ghcr.io | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- id: meta-forks | |
if: github.repository != 'uswitch/vault-creds' | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/${{ github.repository }} | |
tags: | | |
type=semver,pattern=v{{version}} | |
type=sha,prefix=,format=long, | |
- uses: docker/build-push-action@v4 | |
if: github.repository != 'uswitch/vault-creds' | |
with: | |
context: . | |
labels: ${{ steps.meta-forks.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta-forks.outputs.tags }} | |
build-args: LDFLAGS=-X main.SHA=${{ github.sha }} | |