dbgate/.github/workflows/build-app-beta.yaml

102 lines
3.2 KiB
YAML
Raw Normal View History

2021-05-27 13:46:21 +00:00
name: Electron app BETA
2021-01-23 09:33:20 +00:00
on:
push:
2021-04-23 19:04:06 +00:00
tags:
2021-01-23 09:37:44 +00:00
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
2021-01-23 09:33:20 +00:00
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
2022-04-14 11:48:52 +00:00
os: [macOS-10.15, windows-2022, ubuntu-18.04]
# os: [macOS-10.15]
2021-01-23 09:33:20 +00:00
steps:
- name: Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
2021-09-28 06:15:08 +00:00
- uses: actions/checkout@v2
2021-01-23 09:33:20 +00:00
with:
fetch-depth: 1
- name: Use Node.js 14.x
2021-01-23 09:33:20 +00:00
uses: actions/setup-node@v1
with:
node-version: 14.x
2021-01-23 09:33:20 +00:00
- name: yarn install
run: |
yarn install
- name: setCurrentVersion
run: |
yarn setCurrentVersion
- name: fillNativeModulesElectron
run: |
yarn fillNativeModulesElectron
- name: fillPackagedPlugins
run: |
yarn fillPackagedPlugins
2021-01-23 10:02:56 +00:00
- name: Install Snapcraft
if: matrix.os == 'ubuntu-18.04'
uses: samuelmeuli/action-snapcraft@v1
2021-01-23 09:33:20 +00:00
- name: Publish
run: |
yarn run build:app
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} # token for electron publish
WIN_CSC_LINK: ${{ secrets.WINCERT_CERTIFICATE }}
WIN_CSC_KEY_PASSWORD: ${{ secrets.WINCERT_PASSWORD }}
2022-04-12 19:52:56 +00:00
CSC_LINK: ${{ secrets.APPLECERT_CERTIFICATE }}
CSC_KEY_PASSWORD: ${{ secrets.APPLECERT_PASSWORD }}
2021-01-23 09:33:20 +00:00
2021-01-23 10:02:56 +00:00
- name: Save snap login
if: matrix.os == 'ubuntu-18.04'
run: 'echo "$SNAPCRAFT_LOGIN" > snapcraft.login'
shell: bash
env:
SNAPCRAFT_LOGIN: ${{secrets.SNAPCRAFT_LOGIN}}
- name: publishSnap
if: matrix.os == 'ubuntu-18.04'
run: |
snapcraft login --with snapcraft.login
snapcraft upload --release=beta app/dist/*.snap
2021-01-23 09:33:20 +00:00
- name: Copy artifacts
run: |
mkdir artifacts
2021-04-24 11:12:00 +00:00
cp app/dist/*.deb artifacts/dbgate-beta.deb || true
2021-05-22 07:28:21 +00:00
cp app/dist/*x86*.AppImage artifacts/dbgate-beta.AppImage || true
cp app/dist/*arm64*.AppImage artifacts/dbgate-beta-arm64.AppImage || true
cp app/dist/*armv7l*.AppImage artifacts/dbgate-beta-armv7l.AppImage || true
2021-09-16 11:03:56 +00:00
cp app/dist/*win*.exe artifacts/dbgate-beta.exe || true
2021-09-16 09:36:34 +00:00
cp app/dist/*win_x64.zip artifacts/dbgate-windows-beta.zip || true
cp app/dist/*win_arm64.zip artifacts/dbgate-windows-beta-arm64.zip || true
2022-01-25 19:11:59 +00:00
cp app/dist/*-mac_x64.dmg artifacts/dbgate-beta.dmg || true
2021-05-23 19:41:36 +00:00
cp app/dist/*-mac_arm64.dmg artifacts/dbgate-beta-arm64.dmg || true
2021-04-24 11:12:00 +00:00
2021-01-23 09:33:20 +00:00
mv app/dist/*.exe artifacts/ || true
2021-04-24 07:12:30 +00:00
mv app/dist/*.zip artifacts/ || true
2021-01-23 09:33:20 +00:00
mv app/dist/*.AppImage artifacts/ || true
mv app/dist/*.deb artifacts/ || true
2021-01-23 10:02:56 +00:00
mv app/dist/*.snap artifacts/ || true
2021-04-23 19:01:58 +00:00
mv app/dist/*.dmg artifacts/ || true
2021-01-23 09:33:20 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: ${{ matrix.os }}
path: artifacts
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: 'artifacts/**'
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}