mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-08-22 14:53:45 +00:00
Begin releasing on schedule
This commit is contained in:
@ -1,9 +1,7 @@
|
||||
name: Build Docker
|
||||
name: Build Docker Images
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
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