feat: add latest_tag
input to generate latest tag
#167
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: Sanity Checks | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- uses: pre-commit/[email protected] | |
tagging: | |
name: "Tagging (dry-run)" | |
needs: pre-commit | |
runs-on: ubuntu-latest | |
outputs: | |
net_tag: ${{ steps.tag_version.outputs.new_tag }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
dry_run: true | |
- run: echo "Calculated Next Tag is ${{ steps.tag_version.outputs.tags }}" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: arduino/setup-task@v2 | |
- name: Lint and tests | |
run: | | |
task test |