mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-07-22 16:34:56 +00:00
21 lines
706 B
YAML
21 lines
706 B
YAML
name: Auto release
|
|
on:
|
|
schedule:
|
|
- cron: "0 14 * * *"
|
|
workflow_dispatch:
|
|
jobs:
|
|
auto-release:
|
|
runs-on: ubuntu-latest
|
|
# If forked, changed to your username to enable auto-releases
|
|
if: github.repository_owner == 'itzg'
|
|
steps:
|
|
- uses: zenengeo/github-auto-release-action@main
|
|
with:
|
|
stable-duration: 3d
|
|
force-duration: 14d
|
|
# It is important to use a token other than the workflow allocated GITHUB_TOKEN,
|
|
# since actions prevent loops by disallowing recursive workflow triggers with that token.
|
|
# In this case, the created tag needs to trigger the "Build and Publish" workflow.
|
|
token: '${{ secrets.GH_TOKEN }}'
|
|
|