diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-29 22:23:13 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-29 22:23:13 +0100 |
commit | 0c9568ed217f5caa81c4ec788939d5372113455c (patch) | |
tree | 9595b8919ab22b90a36ff3f51c6806842b96adc2 /.github | |
parent | 5d5d78c6bf74d0bf01781444b8da105389591036 (diff) | |
download | engarde-importer-0c9568ed217f5caa81c4ec788939d5372113455c.tar.gz engarde-importer-0c9568ed217f5caa81c4ec788939d5372113455c.tar.bz2 engarde-importer-0c9568ed217f5caa81c4ec788939d5372113455c.zip |
[release]: Move checkout to the front
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1a2be8..0c5912f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,9 @@ jobs: env: GOARCH: amd64 steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Go 1.17 uses: actions/setup-go@v2 with: @@ -50,9 +53,6 @@ jobs: restore-keys: | ${{ runner.os }}-go- - - name: Checkout - uses: actions/checkout@v2 - - name: Build run: go build -v ./... |