Skip to content

Commit

Permalink
Fix push action
Browse files Browse the repository at this point in the history
  • Loading branch information
sashayakovtseva committed Nov 30, 2023
1 parent d6bb79c commit 704859f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ env:
GO_VERSION: "~1.21.3"
jobs:
push:
runs-on: "ubuntu-latest"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: "authzed/actions/setup-go@main"
- uses: authzed/actions/setup-go@main
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "docker/login-action@v1"
- uses: docker/login-action@v3
with:
registry: "ghcr.io"
username: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"
- uses: "docker/setup-qemu-action@v1"
- uses: "docker/setup-buildx-action@v1"
- uses: "docker/build-push-action@v5"
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: true
file: ${{ github.workspace }}/Dockerfile.release
file: Dockerfile.release
tags: ${{ github.repository }}:${{ github.ref_name }}

0 comments on commit 704859f

Please sign in to comment.