Skip to content

fix: add token to action #4

fix: add token to action

fix: add token to action #4

Workflow file for this run

name: Build and Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Make all
run: |
./package.sh
- name: Release
uses: softprops/action-gh-release@v2
if: github.ref_type == 'tag'
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
build/*