Skip to content

auto update dist/ [Github Actions] #14

auto update dist/ [Github Actions]

auto update dist/ [Github Actions] #14

Workflow file for this run

name: Hext.js Release
on:
push:
# creates a release for any tag conforming to a
# semver version, e.g., v1.0.0
tags:
- v*.*.*
jobs:
hext_emscripten:
name: Hext.js Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/hext.js,dist/hext.mjs,dist/hext-without-eval.js"
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
draft: false
allowUpdates: true