Skip to content

Bump golang from 1.21.4 to 1.22.0 #173

Bump golang from 1.21.4 to 1.22.0

Bump golang from 1.21.4 to 1.22.0 #173

Workflow file for this run

name: Build and Push
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0" # Rebuild the image once a week
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: github.event_name != 'pull_request'
- uses: actions/checkout@v4
- run: make build
- run: make push
if: github.event_name != 'pull_request'