Skip to content

v1.4.0-beta.1

v1.4.0-beta.1 #24

Workflow file for this run

name: release
run-name: "${{ inputs.version }}"
on:
workflow_dispatch:
inputs:
version:
description: Specify version
required: true
jobs:
main:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build.
run: |
sudo apt-get update -qq
sudo apt-get install -qq $(sed -f scripts/remove-comments.sed -e 's/[^ ]*://g' depends)
sudo ./build.sh
- uses: actions/github-script@v7
with:
script: |
const script = require("./.github/scripts/release.cjs");
const version = process.env.VERSION;
await script({ version, github, context, glob });
env:
VERSION: "${{ github.event.inputs.version }}"