And yet another one... #12
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
on: | |
push: | |
branches: | |
- main | |
name: Create Release | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ['3.9'] | |
outputs: | |
ready_to_release: ${{ steps.check_version_tag.outputs.version_tag_exists }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Fetch all tags | |
run: git fetch --tags | |
- name: Check for tags | |
id: check_version_tag | |
run: | | |
TAGS=$(git tag --points-at HEAD) | |
if [[ "$TAGS" == *v* ]]; then | |
echo "Version tag found! Building new release: $TAGS" | |
echo "version_tag_exists=true" >> $GITHUB_OUTPUT | |
else | |
echo "No version tag found. Skipping workflow." | |
echo "version_tag_exists=false" >> $GITHUB_OUTPUT | |
fi | |
- uses: compas-dev/compas-actions.build@v3 | |
if: steps.check_version_tag.outputs.version_tag_exists == 'true' | |
with: | |
python: ${{ matrix.python }} | |
invoke_lint: true | |
check_import: true | |
publish: | |
needs: build | |
runs-on: windows-latest | |
if: needs.build.outputs.ready_to_release == 'true' | |
steps: | |
- uses: compas-dev/compas-actions.publish@v2 | |
with: | |
pypi_token: ${{ secrets.PYPI_PASSWORD }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build_ghpython_components: true | |
gh_source: src/aixd_ara/components | |
gh_target: src/aixd_ara/components/ghuser | |
gh_prefix: "" | |
gh_interpreter: "ironpython" | |
release_name_prefix: ARA |