tsm/.github/workflows/release.yml

32 lines
559 B
YAML
Raw Normal View History

2023-09-05 16:49:29 -05:00
name: 🚀 Release
on:
push:
tags:
- 'v*.*'
permissions:
contents: write
jobs:
build-artifacts:
uses: ./.github/workflows/build.yml
create-release:
env:
GH_TOKEN: ${{ github.token }}
runs-on: ubuntu-latest
needs:
- build-artifacts
steps:
- uses: actions/checkout@v3
- name: Download Build Artifacts
uses: actions/download-artifact@v3
- run: ls -R artifacts/
- name: Generate New Nightly Release
run: |
gh release create ${{ github.ref }} ./artifacts/*