Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge github actions changes to main #88

Merged
merged 14 commits into from
Feb 3, 2024
17 changes: 8 additions & 9 deletions .github/workflows/build_stable_sse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,18 @@ jobs:
uses: actions/download-artifact@v4
with:
name: Pandora.Behaviour.Engine
path: ./
merge-multiple: true

- name: Release
- name: Zip Artifact For Deployment
run: Compress-Archive -Path ./* -Destination ./Pandora_Behaviour_Engine.zip

- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
gh release create "${{ github.ref }}"
"Pandora.Behaviour.Engine.zip"
"./Pandora_Behaviour_Engine.zip"
--generate-notes
--title "Pandora Behaviour Engine ${{ github.ref }}"

- name: Upload Artifact to Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
gh release upload ${{ github.ref }} ./*.zip


Loading