Skip to content

Commit

Permalink
Change workflow release
Browse files Browse the repository at this point in the history
  • Loading branch information
Maknee committed Jul 24, 2023
1 parent f105e67 commit e7901af
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,13 +291,20 @@ jobs:
id: download-artifact
uses: actions/download-artifact@v3

- name: Display structure of downloaded files
run: ls -R

- name: Get commit hash
id: commit
uses: pr-mpt/actions-commit-hash@v2

- name: Create release
id: create_release
uses: ncipollo/release-action@v1
uses: "marvinpinto/action-automatic-releases@latest"
with:
artifacts: "./artifact/*.zip"
prerelease: true
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
artifact/*.zip

0 comments on commit e7901af

Please sign in to comment.