mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-09-17 23:55:42 +00:00
Begin releasing on schedule
This commit is contained in:
@ -1,9 +1,7 @@
|
|||||||
name: Build Docker
|
name: Build Docker Images
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
sqlite:
|
sqlite:
|
||||||
12
.github/workflows/release-on-schedule.yml
vendored
Normal file
12
.github/workflows/release-on-schedule.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
name: Release (Monthly)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
# On the 15th of the month
|
||||||
|
- cron: '30 5 15 * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
uses: GothenburgBitFactory/taskchampion-sync-server/.github/workflows/publish-docker-image.yaml
|
||||||
|
secrets: inherit
|
||||||
11
.github/workflows/release-on-tag.yml
vendored
Normal file
11
.github/workflows/release-on-tag.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
name: Release (Tag)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
uses: GothenburgBitFactory/taskchampion-sync-server/.github/workflows/publish-docker-image.yaml
|
||||||
|
secrets: inherit
|
||||||
Reference in New Issue
Block a user