mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FIX] GitHub Actions
This commit is contained in:
parent
5ea3788e7d
commit
6f2f7bee13
1 changed files with 9 additions and 6 deletions
15
.github/workflows/push.yml
vendored
15
.github/workflows/push.yml
vendored
|
@ -1,6 +1,5 @@
|
||||||
name: push
|
name: push
|
||||||
on:
|
on: push
|
||||||
push:
|
|
||||||
jobs:
|
jobs:
|
||||||
launcher:
|
launcher:
|
||||||
name: Launcher
|
name: Launcher
|
||||||
|
@ -49,26 +48,30 @@ jobs:
|
||||||
name: Launcher
|
name: Launcher
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Get version value, set to env
|
||||||
|
if: startsWith(github.event.ref, 'refs/tags')
|
||||||
|
run: echo "LAUNCHER_VERSION=v$(awk -F\' '/version =/ {print $2}' build.gradle)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: actions/create-release@v1
|
uses: actions/create-release@v1
|
||||||
if: github.event.ref == 'refs/tags/*'
|
if: startsWith(github.event.ref, 'refs/tags')
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref }}
|
tag_name: ${{ github.ref }}
|
||||||
release_name: GravitLauncher ${{ github.ref }}
|
release_name: GravitLauncher ${{ env.LAUNCHER_VERSION }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
|
|
||||||
- name: Pack release
|
- name: Pack release
|
||||||
if: github.event.ref == 'refs/tags/*'
|
if: startsWith(github.event.ref, 'refs/tags')
|
||||||
run: |
|
run: |
|
||||||
cd artifacts/
|
cd artifacts/
|
||||||
zip -r -9 ../Release.zip *
|
zip -r -9 ../Release.zip *
|
||||||
|
|
||||||
- name: Upload release
|
- name: Upload release
|
||||||
if: github.event.ref == 'refs/tags/*'
|
if: startsWith(github.event.ref, 'refs/tags')
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue