mirror of
https://github.com/agresdominik/ci-pipelines.git
synced 2026-07-21 23:30:55 +00:00
fix(languages): gitea runner input bug fix
This commit is contained in:
@@ -16,13 +16,15 @@ jobs:
|
||||
check:
|
||||
name: goreleaser check
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GO_VERSION_FILE: ${{ inputs.go-version-file }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version-file: ${{ inputs.go-version-file }}
|
||||
go-version-file: ${{ env.GO_VERSION_FILE }}
|
||||
cache: true
|
||||
|
||||
- name: Validate .goreleaser.yaml
|
||||
@@ -35,6 +37,8 @@ jobs:
|
||||
name: goreleaser build (snapshot)
|
||||
runs-on: ubuntu-latest
|
||||
needs: check
|
||||
env:
|
||||
GO_VERSION_FILE: ${{ inputs.go-version-file }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
@@ -43,7 +47,7 @@ jobs:
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version-file: ${{ inputs.go-version-file }}
|
||||
go-version-file: ${{ env.GO_VERSION_FILE }}
|
||||
cache: true
|
||||
|
||||
- name: Build snapshot
|
||||
|
||||
Reference in New Issue
Block a user