This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
Bump github.com/docker/docker from 23.0.3+incompatible to 24.0.7+incompatible #98
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: "Build and push" | |
on: | |
push: | |
branches: [main] | |
pull_request: {} | |
jobs: | |
lint: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "emortalmc/actions/go/lint@main" | |
publish: | |
needs: "lint" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "emortalmc/actions/go/publish-single@main" | |
with: | |
registry-password: "${{ secrets.GITHUB_TOKEN }}" | |
deploy: | |
needs: "publish" | |
runs-on: "ubuntu-latest" | |
if: "github.ref == 'refs/heads/main'" | |
steps: | |
- uses: "emortalmc/actions/argo-sync@main" | |
with: | |
deployment-name: "party-manager" | |
values-path: "service/values/party-manager.yaml" | |
deployments-repo-token: "${{ secrets.DEPLOYMENTS_REPO_TOKEN }}" |