refactor(ci): Clean up steps

This commit is contained in:
TwiN 2022-06-18 13:06:24 -04:00
parent e4c9ad8796
commit f38b12d55b
3 changed files with 4 additions and 8 deletions

View File

@ -14,12 +14,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 5 timeout-minutes: 5
steps: steps:
- name: Set up Go - uses: actions/setup-go@v3
uses: actions/setup-go@v3
with: with:
go-version: 1.18 go-version: 1.18
- name: Check out code into the Go module directory - uses: actions/checkout@v3
uses: actions/checkout@v3
- name: Build binary to make sure it works - name: Build binary to make sure it works
run: go build -mod vendor run: go build -mod vendor
- name: Test - name: Test

View File

@ -11,8 +11,7 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }} if: ${{ github.event.workflow_run.conclusion == 'success' }}
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- name: Check out code - uses: actions/checkout@v3
uses: actions/checkout@v3
- name: Get image repository - name: Get image repository
run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Set up QEMU - name: Set up QEMU

View File

@ -8,8 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- name: Check out code - uses: actions/checkout@v3
uses: actions/checkout@v3
- name: Get image repository - name: Get image repository
run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Get the release - name: Get the release