Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
whiteninja76 authored Jan 16, 2024
1 parent d154285 commit 0132ede
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,15 @@ jobs:
- name: Create release zip
run: |
zip -r platform-status.zip manifest.json release/* ".github"
- name: Create a release and upload built artefacts
uses: actions/github-script@v6
with:
script: |
const release = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: "${{ github.ref_name }}",
generate_release_notes: true,
});

0 comments on commit 0132ede

Please sign in to comment.