Skip to content

Commit

Permalink
Fix CI packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpas committed Oct 30, 2024
1 parent 1952ef5 commit 05bd10a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Package
run: |
# Version
Expand All @@ -24,16 +24,17 @@ jobs:
# Archive for GitHub Release
zip -r TheseusMissionTemplate_$VERSION.zip compositions template LICENSE README.md
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Theseus_MissionTemplate
path: |
compositions
template
LICENSE
README.md
include-hidden-files: true
- name: Upload to GitHub
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
Expand Down

0 comments on commit 05bd10a

Please sign in to comment.