no message #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- 'FarawayWar' | |
name: release all os -- no code signing | |
jobs: | |
release: | |
name: Deskreen Release | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-18.04 # IMPORTANT!!! this LINUX os should be the same as in build-and-test and covecov workflows! this is for making sure caches are used in most efficient way | |
artifact_name: 'release/{*.AppImage,*.rpm,*.deb,*.yml}' | |
- os: windows-2019 | |
artifact_name: 'release/{*.msi,*.exe,*.blockmap,*.yml}' | |
- os: macos-10.15 | |
artifact_name: 'release/{*.dmg,*.blockmap,*.yml}' | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '16' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/[email protected] | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ matrix.os }}-yarn- | |
- name: yarn install in ./app/client | |
run: | | |
cd ./app/client | |
yarn install --frozen-lockfile | |
- name: yarn install in ./ | |
run: yarn install --frozen-lockfile | |
- name: yarn install in ./app | |
run: | | |
cd ./app | |
yarn install --frozen-lockfile | |
- name: yarn build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: yarn build | |
- name: yarn lint | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: yarn lint | |
- name: yarn tsc | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: yarn tsc | |
# - name: yarn test | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: yarn test | |
# - name: yarn build-ux | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: yarn build-ux | |
# - name: yarn test-ux | |
# uses: GabrielBB/[email protected] | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# run: yarn test-ux | |
- name: yarn package-ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: yarn package-ci | |
# TODO: add windows32 build step | |
- name: Upload binaries to release | |
uses: xresloader/upload-to-github-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: ${{ matrix.artifact_name }} | |
tags: true | |
draft: true | |
create-release: | |
needs: release | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v2.0.4fix | |
release_name: Deskreen Release v2.0.4fix | |
draft: true | |
prerelease: false |