Skip to content

scheduled

scheduled #28

Workflow file for this run

name: scheduled
on:
workflow_dispatch:
schedule:
- cron: "0 4 1/15 * *"
jobs:
release:
runs-on: windows-latest
steps:
- name: 🤘 checkout
uses: actions/checkout@v2
- name: 🚀 release
shell: pwsh
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
dotnet tool update -g dotnet-gcm
dotnet gcm store --protocol=https --host=github.com --username=$env:GITHUB_ACTOR --password=$env:GH_TOKEN
gh auth status
gh release create v$(date "+%Y.%m.%d") --generate-notes