diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 03fac8098..1ba286528 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -39,11 +39,14 @@ jobs: 7z a ${{github.workspace}}/${{matrix.target}}.zip ${{github.workspace}}/scripts 7z rn ${{github.workspace}}/${{matrix.target}}.zip scripts reframework/autorun - - name: Release + - name: Create Release if: github.ref == 'refs/heads/master' - uses: softprops/action-gh-release@v0.1.13 + uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5 with: - repository: joeyhodge/REFramework + repo: REFramework + owner: joeyhodge name: ${{format('REF Nightly {0} ({1})', github.run_number, github.sha)}} tag_name: latest + makeLatest: true files: ${{github.workspace}}/${{matrix.target}}.zip + artifacts: ${{github.workspace}}/${{matrix.target}}.zip