There was an error while loading. Please reload this page.
1 parent f606fb4 commit 8d79020Copy full SHA for 8d79020
1 file changed
.github/workflows/main.yml
@@ -54,9 +54,12 @@ jobs:
54
done < <(find . -mindepth 1 -maxdepth 1 -type d -not -path "*.kext" | cut -c 3-)
55
cd -
56
57
- - name: Upload AutoPkg Package to Artifacts
58
- uses: actions/upload-artifact@v4
+ - name: Create Release on Push
+ uses: softprops/action-gh-release@v2
59
with:
60
- name: ${{ env.BUILD_OUTPUT }}/alpha.zip
61
- path: ${{ env.BUILD_OUTPUT }}/alpha.zip
+ prerelease: true
+ bodyFile: ReleaseNotes.md
62
+ files: "${{ env.BUILD_OUTPUT }}/*.zip"
63
+ tag: "v${{ env.ITLWM_VER }}-alpha"
64
+ token: ${{ secrets.GITHUB_TOKEN }}
65
0 commit comments