Skip to content

Commit

Permalink
trying to fix the workspace.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jun 26, 2022
1 parent 4203b7a commit 8343a1c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ jobs:
env:
# This is necessary in order to push a commit to the repo
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged
- name: Upload workspace
uses: actions/upload-artifact@v3
with:
name: workspace
path: ${{ github.workspace }}/**/*
retention-days: 1
build:
name: Build ${{ matrix.cfg.goos }}/${{ matrix.cfg.goarch }}
needs: release
Expand Down Expand Up @@ -81,6 +87,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v3
with:
name: workspace
- name: Download binaries
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 8343a1c

Please sign in to comment.