mirror of
https://github.com/helfrichmichael/prusaslicer-novnc.git
synced 2024-08-30 18:32:27 +00:00
Add the GitHub Actions workflow for tagging new releases of Prusaslicer.
This commit is contained in:
parent
a7baaa7b97
commit
2cf1f69237
18
.github/workflows/tag.yml
vendored
Normal file
18
.github/workflows/tag.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: tag
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *" # Every night at Midnight.
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: sergeysova/jq-action@v2 # Needed for parsing the JSON of the Prusaslicer releases.
|
||||
- name: checkout repo content
|
||||
uses: actions/checkout@v2 # Checkout the repository content to GitHub's runner.
|
||||
- name: Tag the latest Prusaslicer if available
|
||||
run: |
|
||||
chmod +x ./tag_latest_prusaslicer.sh
|
||||
./tag_latest_prusaslicer.sh
|
Loading…
Reference in New Issue
Block a user