Skip to content

Commit

Permalink
Fix 1.1.x releases and update builder
Browse files Browse the repository at this point in the history
  • Loading branch information
dhumphreys01 committed Apr 24, 2024
1 parent 1e3f462 commit d4e4598
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,24 @@ on:
required: true

jobs:
tag:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
fetch-depth: '0'

- name: Print Input
run: echo "${{ inputs.tag }}"

- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v${{ inputs.tag }}"

goreleaser:
needs: tag
runs-on: ubuntu-latest
Expand Down Expand Up @@ -44,21 +62,3 @@ jobs:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}

tag:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
fetch-depth: '0'

- name: Print Input
run: echo "${{ inputs.tag }}"

- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v${{ inputs.tag }}"

0 comments on commit d4e4598

Please sign in to comment.