Skip to content

Commit

Permalink
Add action to tag on allwpilib tag dispatch
Browse files Browse the repository at this point in the history
Adapted from robotpy
  • Loading branch information
sciencewhiz committed Jun 19, 2024
1 parent 9cba760 commit 848c885
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: bump

on: [repository_dispatch]

jobs:
bump:
if: github.event_name == 'repository_dispatch' && github.event.action == 'tag'
runs-on: ubuntu-latest
steps:
- name: Information
run: |
echo "Version update for ${{ github.event.client_payload.package_name }} -> ${{ github.event.client_payload.package_version }} requested"
- uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
fetch-depth: 0

- name: Tag and push
shell: bash
run: |
git tag ${{ github.event.client_payload.package_version }}
git push origin ${{ github.event.client_payload.package_version }}

0 comments on commit 848c885

Please sign in to comment.