libportal/.github/workflows/ci.yml

60 lines
2.2 KiB
YAML
Raw Normal View History

2023-06-26 03:43:33 +00:00
name: Build/Publish
on:
push:
branches:
- master
- develop
- develop-*
workflow_dispatch:
inputs:
debug_enabled:
description: debug_enabled
type: boolean
2023-06-26 03:43:33 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: Setup Golang
run: |
2023-08-09 18:58:55 +00:00
sudo apt-get update && sudo apt-get install bsdmainutils -y bison;
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer);
2023-08-09 18:57:20 +00:00
source ~/.gvm/scripts/gvm || true;
gvm install go1.4 -B;
gvm use go1.4 --default;
gvm install go1.19 -B;
VERSION=0.28.1;
TINYGO="tinygo_${VERSION}_amd64.deb";
2023-06-26 04:04:53 +00:00
wget -q https://github.com/tinygo-org/tinygo/releases/download/v$VERSION/$TINYGO;
sudo dpkg -i $TINYGO && rm $TINYGO;
- name: Fetch Wasm Deps
run: |
2023-08-09 19:00:36 +00:00
source ~/.gvm/scripts/gvm || true;
2023-08-09 19:30:12 +00:00
gvm use go1.19 --default || true;
2023-08-09 19:32:47 +00:00
set -x;
cd src/golang;
go get;
2023-06-26 04:02:17 +00:00
- run: npm ci
- run: npm run build --if-present
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.GITEA_SSH_KEY }}
known_hosts: ${{ secrets.GITEA_KNOWN_HOST }}
- name: Publish
run: npm run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled && failure() }}
with:
limit-access-to-actor: true