Publish Custom App #1
Workflow file for this run
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 Custom App | |
on: | |
release: | |
types: [published] | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: custom | |
- name: Set tag variable as an output | |
id: vars | |
run: | |
| | |
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | |
- name: Validate tag | |
run: | |
| | |
cd custom | |
python .github/workflows/tag_validator.py ${{ steps.vars.outputs.tag }} |