Skip to content

Commit

Permalink
Fixed wrong Golang setup in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed Feb 27, 2024
1 parent a2a6f24 commit fa574ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
contents: read
packages: write

strategy:
matrix:
go-version: [ 1.22.x ]

outputs:
tags: ${{ steps.meta.outputs.tags }}

steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v5
with:
go-version: '1.22.x'

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
Expand All @@ -41,7 +41,7 @@ jobs:
id: extract_pseudohash
shell: bash
run: |
echo "GO_PSEUDOHASH=$(go list -f '{{.Version}}' -m github.com/streamingfast/firehose-core@${{ github.sha }})" > $GITHUB_ENV
echo "GO_PSEUDOHASH=$(go list -f '{{.Version}}' -m github.com/streamingfast/firehose-core@${{ github.sha }})" | tee $GITHUB_ENV
- name: Generate docker tags/labels from github build context
id: meta
Expand Down

0 comments on commit fa574ba

Please sign in to comment.