mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-07 01:33:14 -06:00
38 lines
695 B
YAML
38 lines
695 B
YAML
|
name: 🚀 Release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- 'v*.*'
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
run-tests:
|
||
|
uses: ./.github/workflows/test.yml
|
||
|
|
||
|
build-n-publish:
|
||
|
needs: run-tests
|
||
|
permissions:
|
||
|
id-token: write
|
||
|
uses: ./.github/workflows/pypi.yml
|
||
|
|
||
|
create-release:
|
||
|
needs: build-n-publish
|
||
|
env:
|
||
|
GH_TOKEN: ${{ github.token }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: update latest tag
|
||
|
uses: richardsimko/update-tag@v1
|
||
|
with:
|
||
|
tag_name: latest
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: Generate New Release
|
||
|
run: gh release create ${{ github.ref }}
|