Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit eb3c12d

Browse files
authored
Merge pull request #207 from font/go-setup
Move Go setup step earlier in job
2 parents aa9138b + f115882 commit eb3c12d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ jobs:
2929
with:
3030
fetch-depth: 0 # Fetch all history for all tags and branches
3131

32+
- name: Set Up Go to Install OPM
33+
uses: actions/setup-go@v2
34+
with:
35+
go-version: '1.16.7'
36+
3237
# FIXME: The version tags created in this repo for official releases are
3338
# annotated tags. However, this step is necessary to enable matching
3439
# lightweight (non-annotated) tags because the GitHub Actions checkout@v2
@@ -65,11 +70,6 @@ jobs:
6570
username: ${{ secrets.QUAY_USERNAME }}
6671
password: ${{ secrets.QUAY_TOKEN }}
6772

68-
- name: Set Up Go to Install OPM
69-
uses: actions/setup-go@v2
70-
with:
71-
go-version: '1.16.7'
72-
7373
- name: Build and Push Operator Image
7474
run: |
7575
make docker-build VERSION=${RELEASE_VERSION}

0 commit comments

Comments
 (0)