feat(ci): create artifacts also for dev commits, but publish releases only if master
This commit is contained in:
parent
2265261a3c
commit
3d7e711555
16
.github/workflows/release.yml
vendored
16
.github/workflows/release.yml
vendored
|
@ -7,6 +7,7 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
- dev
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -33,7 +34,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Create new release (if it doesn't exist yet)
|
- name: Create new release (only on master)
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
COMMIT_HASH=$(git rev-list --max-count=1 HEAD)
|
COMMIT_HASH=$(git rev-list --max-count=1 HEAD)
|
||||||
echo "Creating release: ${{ needs.extract-version.outputs.espanso_version }}"
|
echo "Creating release: ${{ needs.extract-version.outputs.espanso_version }}"
|
||||||
|
@ -83,7 +85,8 @@ jobs:
|
||||||
target/windows/Espanso-Win-Portable-x86_64.zip
|
target/windows/Espanso-Win-Portable-x86_64.zip
|
||||||
target/windows/installer/Espanso-Win-Installer-x86_64.exe.sha256.txt
|
target/windows/installer/Espanso-Win-Installer-x86_64.exe.sha256.txt
|
||||||
target/windows/Espanso-Win-Portable-x86_64.zip.sha256.txt
|
target/windows/Espanso-Win-Portable-x86_64.zip.sha256.txt
|
||||||
- name: Upload artifacts to Github Releases
|
- name: Upload artifacts to Github Releases (if master)
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
gh release upload ${{ needs.extract-version.outputs.espanso_version }} target/windows/installer/Espanso-Win-Installer-x86_64.exe target/windows/Espanso-Win-Portable-x86_64.zip target/windows/installer/Espanso-Win-Installer-x86_64.exe.sha256.txt target/windows/Espanso-Win-Portable-x86_64.zip.sha256.txt
|
gh release upload ${{ needs.extract-version.outputs.espanso_version }} target/windows/installer/Espanso-Win-Installer-x86_64.exe target/windows/Espanso-Win-Portable-x86_64.zip target/windows/installer/Espanso-Win-Installer-x86_64.exe.sha256.txt target/windows/Espanso-Win-Portable-x86_64.zip.sha256.txt
|
||||||
|
|
||||||
|
@ -109,7 +112,8 @@ jobs:
|
||||||
path: |
|
path: |
|
||||||
Espanso-X11.AppImage
|
Espanso-X11.AppImage
|
||||||
Espanso-X11.AppImage.sha256.txt
|
Espanso-X11.AppImage.sha256.txt
|
||||||
- name: Upload artifacts to Github Releases
|
- name: Upload artifacts to Github Releases (if master)
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-X11.AppImage Espanso-X11.AppImage.sha256.txt
|
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-X11.AppImage Espanso-X11.AppImage.sha256.txt
|
||||||
|
|
||||||
|
@ -142,7 +146,8 @@ jobs:
|
||||||
path: |
|
path: |
|
||||||
Espanso-Mac-Intel.zip
|
Espanso-Mac-Intel.zip
|
||||||
Espanso-Mac-Intel.zip.sha256.txt
|
Espanso-Mac-Intel.zip.sha256.txt
|
||||||
- name: Upload artifacts to Github Releases
|
- name: Upload artifacts to Github Releases (if master)
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-Mac-Intel.zip Espanso-Mac-Intel.zip.sha256.txt
|
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-Mac-Intel.zip Espanso-Mac-Intel.zip.sha256.txt
|
||||||
|
|
||||||
|
@ -188,6 +193,7 @@ jobs:
|
||||||
path: |
|
path: |
|
||||||
Espanso-Mac-M1.zip
|
Espanso-Mac-M1.zip
|
||||||
Espanso-Mac-M1.zip.sha256.txt
|
Espanso-Mac-M1.zip.sha256.txt
|
||||||
- name: Upload artifacts to Github Releases
|
- name: Upload artifacts to Github Releases (if master)
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-Mac-M1.zip Espanso-Mac-M1.zip.sha256.txt
|
gh release upload ${{ needs.extract-version.outputs.espanso_version }} Espanso-Mac-M1.zip Espanso-Mac-M1.zip.sha256.txt
|
Loading…
Reference in New Issue
Block a user