mirror of
https://github.com/daylinmorgan/swydd.git
synced 2025-02-23 12:55:50 -06:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
621 B
YAML
33 lines
621 B
YAML
name: 🚀 Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
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@v4
|
|
|
|
- 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 }}
|