Skip to content

.github/workflows/release.yaml #2

.github/workflows/release.yaml

.github/workflows/release.yaml #2

Workflow file for this run

on:
workflow_dispatch:
release:
types: [created]
jobs:
release:
name: linux
runs-on: ubuntu-latest
steps:
- name: Upload Artifact to Summary
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_DIR }}
path: |
plugins/*.wasm
- name: Upload Artifact to Release
uses: softprops/action-gh-release@v1
with:
files: |
plugins/*.wasm
if: startsWith(github.ref, 'refs/tags/')