Skip to content

fix bun

fix bun #85

Workflow file for this run

# adopted from https://github.com/MihailRis/VoxelEngine-Cpp
name: Release
on:
push:
branches: [master, dev]
permissions:
contents: write
jobs:
build_release:
name: Build Release
uses: ./.github/workflows/build.yml

Check failure on line 14 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/build.yml" (source branch with sha:40402912d1951bb8964ef199a1496611b0e7598b) : workflow is not reusable as it is missing a `on.workflow_call` trigger
create_release:
needs: build_release
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: vot
pattern: vot-*
merge-multiple: true
- name: Create release
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref }}
name: ${{ github.sha }}
draft: true
prerelease: false
files: |
vot/vot.user.js
vot/vot-min.user.js
vot/vot-cloudflare.user.js
vot/vot-cloudflare-min.user.js