Skip to content

Change action-ghrelease (#407) #5

Change action-ghrelease (#407)

Change action-ghrelease (#407) #5

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: phuonghuynh/[email protected]
with:
files: |
!(example_data)/** # Exclude 'example_data' folder
!.gitignore
!.prettier*
!.eslint*
!.npmrc
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get Release URL
run: |
echo "Release URL: ${{ steps.create_release.outputs.upload_url }}"