Skip to content

Release

Release #1

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- 'v*.*.*'
jobs:
update:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: set git global safe directory
run: |
pacman -Syu git node --noconfirm
git config --global --add safe.directory $(realpath .)
- uses: actions/checkout@v3
- name: build plugin
run: |
npm i -g [email protected]
pnpm i
pnpm update decky-frontend-lib --latest
pnpm run build
- name: show files
run: |
ls -la
ls -la dist