mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-06-06 18:33:13 +03:00
added auto-release job
This commit is contained in:
parent
8f31c589e9
commit
2030fd5fc6
24
.github/workflows/windows-build.yml
vendored
24
.github/workflows/windows-build.yml
vendored
@ -42,3 +42,27 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: Built files
|
name: Built files
|
||||||
path: EDMarketConnector_win*.msi
|
path: EDMarketConnector_win*.msi
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: Release new version
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: test
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download binary
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: Built files
|
||||||
|
path: ./
|
||||||
|
|
||||||
|
- name: Hash files
|
||||||
|
run: sha256sum EDMarketConnector_win*.msi > ./hashes.sum
|
||||||
|
|
||||||
|
- name: Create Draft Release
|
||||||
|
uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
with:
|
||||||
|
repo_token: "${{secrets.GITHUB_TOKEN}}"
|
||||||
|
draft: true
|
||||||
|
files: |
|
||||||
|
./EDMarketConnector_win*.msi
|
||||||
|
./hashes.sum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user