Fix: Let WhatsApp handle wa.me links instead of opening them in browser #85
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
# (c) Srevin Saju 2020. All rights reserved | |
# Licensed under MIT License | |
# Continuous Integration to release configured AppImages for Altus | |
name: Continuous | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*.*" | |
jobs: | |
AppImage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Current Directory Structure | |
run: | | |
ls | |
git describe --tags --always | |
- name: Build Altus | |
run: | | |
yarn install | |
yarn run make -p linux | |
- name: Upload Appimage | |
uses: actions/[email protected] | |
with: | |
name: AppImage | |
path: "out/make/*.AppImage" | |
Darwin: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Current Directory Structure | |
run: | | |
ls | |
git describe --tags --always | |
- name: Build Altus | |
run: | | |
yarn install | |
yarn run make -p darwin --arch x64 | |
yarn run make -p darwin --arch arm64 | |
- name: Upload DMG | |
uses: actions/[email protected] | |
with: | |
name: DMG | |
path: "out/make/*.dmg" | |
Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Current Directory Structure | |
run: | | |
ls | |
git describe --tags --always | |
- name: Build Altus | |
run: | | |
yarn install | |
yarn run make -p win32 | |
- name: Upload EXE | |
uses: actions/[email protected] | |
with: | |
name: EXE | |
path: "out/make/*.exe" | |
Release: | |
needs: [AppImage, Windows, Darwin] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Release | |
uses: marvinpinto/[email protected] | |
with: | |
prerelease: false | |
files: | | |
AppImage | |
DMG | |
EXE | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |