chore(deps): pin dependencies #8
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 | |
with: | |
go-version: '^1.22.2' | |
- run: make promu | |
- run: promu crossbuild -v | |
- name: Store binaries artifacts | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4 | |
with: | |
name: build | |
path: .build | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Download binaries artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4 | |
with: | |
name: build | |
path: .build | |
- name: Login to Docker Hub | |
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- run: make docker DOCKER_IMAGE_TAG="${{ github.ref_name }}" | |
- run: make docker-publish DOCKER_IMAGE_TAG="${{ github.ref_name }}" | |
- run: make docker-manifest DOCKER_IMAGE_TAG="${{ github.ref_name }}" | |
- if: startsWith(github.ref, 'refs/tags/v') | |
run: | | |
make docker-tag-latest DOCKER_IMAGE_TAG="${{ github.ref_name }}" | |
make docker-publish DOCKER_IMAGE_TAG="latest" | |
make docker-manifest DOCKER_IMAGE_TAG="latest" |