lets see if this works

This commit is contained in:
Quacksire 2022-01-28 22:35:58 -08:00
parent 22109337f2
commit 8a9a1259e8
2 changed files with 38 additions and 1 deletions

36
.github/workflows/release-all.yml vendored Normal file
View file

@ -0,0 +1,36 @@
name: Build/release
on: push
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- create-tag:
uses: rickstaa/action-create-tag@v1
with:
tag: "canary-${{ github.sha }}"
message: "https://github.com/ciderapp/Cider/commit/${{ github.sha }}"
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 10
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# release the app after building
release: true