Update Helm release kube-prometheus-stack to v67.9.0 (#1491) #1476
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: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
env: | |
go-version: 1.22 | |
jobs: | |
deploy: | |
name: Push the latest image | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go-version }} | |
- run: docker build -t ghcr.io/zoetrope/todo:latest ./todo | |
- name: Login to ghcr.io | |
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin | |
- run: docker push ghcr.io/zoetrope/todo:latest |