diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index e3215d7..10b4e6f 100644 --- a/.github/workflows/darwin.yml +++ b/.github/workflows/darwin.yml @@ -40,3 +40,15 @@ jobs: name: mac-release path: PartOfThePack.zip + - name: Update Release + uses: meeDamian/github-release@2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + prerelease: true + allow_override: true + gzip: folders + tag: mac-master + name: mac-master + body: Build of PartOfThePack from master. + files: > + PartOfThePack.zip \ No newline at end of file diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 01845b5..cad53a8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -44,3 +44,15 @@ jobs: name: linux-release path: PartOfThePack.zip + - name: Update Release + uses: meeDamian/github-release@2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + prerelease: true + allow_override: true + gzip: folders + tag: linux-master + name: linux-master + body: Build of PartOfThePack from master. + files: > + PartOfThePack.zip \ No newline at end of file diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b612cf1..25afc74 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -41,3 +41,15 @@ jobs: name: windows-release path: PartOfThePack.zip + - name: Update Release + uses: meeDamian/github-release@2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + prerelease: true + allow_override: true + gzip: folders + tag: windows-master + name: windows-master + body: Build of PartOfThePack from master. + files: > + PartOfThePack.zip \ No newline at end of file