Skip to content

Commit

Permalink
Work around race.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Sep 12, 2022
1 parent ad307bb commit 3190071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
with:
node-version: ${{env.NODE_VERSION}}
registry-url: 'https://registry.npmjs.org'
- name: Create release
run: gh release create ${{ github.ref_name}} -d -t "6502.ts ${{ github.ref_name }}"
- name: Install deps
run: yarn install
- name: Build
run: yarn build
- name: Zip stellerator embedded
working-directory: dist
run: zip -jr stellerator-embedded.zip embedded-bundle
- name: Create release
run: |
gh release create ${{ github.ref_name}} -d -t "6502.ts ${{ github.ref_name }}"
gh release upload ${{ github.ref_name}} dist/stellerator-embedded.zip
- name: Upload stellerator embedded
run: gh release upload ${{ github.ref_name}} dist/stellerator-embedded.zip
- name: Setup SSH agent
uses: webfactory/[email protected]
with:
Expand Down

0 comments on commit 3190071

Please sign in to comment.