This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
port Text_DrawBorder #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish a prerelease | |
permissions: | |
contents: write | |
on: | |
push: | |
branch: develop | |
jobs: | |
tag_latest: | |
name: 'Tag the repository' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@v3 | |
- name: 'Update the tag' | |
uses: EndBug/latest-tag@latest | |
publish_prerelease: | |
name: 'Create a prerelease' | |
needs: | |
- tag_latest | |
uses: ./.github/workflows/release.yml | |
with: | |
release_name: 'Development snapshot' | |
draft: false | |
prerelease: true | |
tag_name: latest |