Skip to content

add shellcheck & test jobs #2

add shellcheck & test jobs

add shellcheck & test jobs #2

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
build:
uses: $GITHUB_REPOSITORY/.github/workflows/build.yml@master

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
publish-release:
name: 🚀 Publish 📦 To Release
needs: build
runs-on: ubuntu-latest
steps:
- name: ⤵️ Download distribution artifact
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: ⤴️ Upload release assets
run: |
cd dist;
find . -type f -prune -exec gh release upload ${{ github.event.release.tag_name }} '{}' +