Skip to content

Commit

Permalink
Merge pull request #49 from kluctl/fix-release
Browse files Browse the repository at this point in the history
Fix release workflow
  • Loading branch information
codablock authored Jan 2, 2025
2 parents b0cc8ec + 6fd8fdd commit 3add6ff
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- uses: actions/download-artifact@v4
with:
name: workdir-${{ matrix.pythonStandaloneVersion }} ${{ matrix.pythonVersion }}
Expand All @@ -112,6 +108,10 @@ jobs:
run: |
git reset --hard
git checkout v0.0.0-${{ matrix.pythonVersion }}-${{ matrix.pythonStandaloneVersion }}-$(cat build-num)
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: run tests
shell: bash
run: |
Expand All @@ -135,6 +135,9 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: workdir-${{ matrix.pythonStandaloneVersion }} ${{ matrix.pythonVersion }}
- name: rename .git back
run: |
mv git-dir .git
- name: update remote url
run: |
git remote set-url origin https://token:[email protected]/$GITHUB_REPOSITORY
Expand Down

0 comments on commit 3add6ff

Please sign in to comment.