Skip to content

Commit

Permalink
ci: add nightly workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Dec 14, 2024
1 parent 5f720a7 commit bcc5b64
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: nightly

on:
push:
paths:
- "languages/**"
- "templates/**"
- "sportorg/**"
- "poetry.lock"
branches: [ master ]
workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
repository-projects: write
steps:
- name: Tag branch
run: |
git tag -f -a nightly -m ""
git push -f origin nightly

0 comments on commit bcc5b64

Please sign in to comment.