Skip to content

Try another release workflow (#410) #13

Try another release workflow (#410)

Try another release workflow (#410) #13

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: ncipollo/release-action
with:
artifacts: '!(example_data)/**,!.gitignore,!.prettier*,!.eslint*,!.npmrc'
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get Release URL
run: |
echo "Release URL: ${{ steps.create_release.outputs.upload_url }}"