forked from apprenticeharper/DeDRM_tools
-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,45 +21,25 @@ jobs: | |
DeDRM_tools_*.zip | ||
DeDRM_tools.zip | ||
# - name: Delete old release | ||
# uses: cb80/delrel@latest | ||
# with: | ||
# tag: autorelease | ||
# token: ${{ github.token }} | ||
# | ||
# - name: Delete old tag | ||
# uses: dev-drprasad/[email protected] | ||
# with: | ||
# tag_name: autorelease | ||
# github_token: ${{ github.token }} | ||
# delete_release: true | ||
# | ||
# - name: Prepare release | ||
# run: cp DeDRM_tools.zip DeDRM_alpha_${{ github.sha }}.zip | ||
# | ||
# - name: Auto-release | ||
# id: autorelease | ||
# uses: softprops/action-gh-release@v1 | ||
# with: | ||
# tag_name: autorelease | ||
# token: ${{ github.token }} | ||
# name: Automatic alpha release with latest changes | ||
# body: | | ||
# This release is automatically generated by Github for each commit. | ||
# | ||
# This means, every time a change is made to this repo, this release will be updated to contain an untested copy of the plugin at that stage. This will contain the most up-to-date code, but it's not tested at all and may be broken. | ||
# | ||
# Last update based on Git commit ${{ github.sha }}. | ||
# prerelease: true | ||
# draft: true | ||
# files: DeDRM_alpha_${{ github.sha }}.zip | ||
# | ||
# - name: Make release public | ||
# uses: irongut/[email protected] | ||
# with: | ||
# token: ${{ github.token }} | ||
# id: ${{ steps.autorelease.outputs.id }} | ||
# draft: false | ||
# prerelease: true | ||
# | ||
# | ||
- name: Prepare release | ||
run: cp DeDRM_tools.zip DeDRM_alpha_${{ github.sha }}.zip | ||
|
||
|
||
- name: Auto-release | ||
id: autorelease | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: autorelease | ||
repository: noDRM/DeDRM_tools_autorelease | ||
token: ${{ secrets.AUTORELEASE_KEY }} | ||
name: Automatic alpha release with latest changes | ||
body: | | ||
This release is automatically generated by Github for each commit. | ||
This means, every time a change is made to the repo, a release with an untested copy of the plugin at that stage will be created. This will contain the most up-to-date code, but it's not tested at all and may be broken. | ||
Last update based on Git commit [${{ github.sha }}](https://github.com/noDRM/DeDRM_tools/commit/${{ github.sha }}). | ||
prerelease: true | ||
draft: false | ||
files: DeDRM_alpha_${{ github.sha }}.zip |