Skip to content

Commit

Permalink
Fix stable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
SamPanDonte committed Feb 26, 2023
1 parent 87959c7 commit 8139086
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Force pull (workaround https://github.com/actions/checkout/issues/439)
run: git pull

- name: Setup environment
id: setup
uses: ./.github/actions/setup
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ jobs:
with:
configuration: production

- name: Zip client
run: |
zip -r client.zip packages/client/dist
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand All @@ -88,5 +92,5 @@ jobs:
append_body: true
tag_name: ${{ inputs.version }}
files: |
packages/server/target/*.jar
packages/client/dist/**
client.zip
packages/server/target/vernite.jar

0 comments on commit 8139086

Please sign in to comment.