Skip to content

Automatically release a new version of flyctl #411

Automatically release a new version of flyctl

Automatically release a new version of flyctl #411

Workflow file for this run

name: Automatically release a new version of flyctl
on:
schedule:
- cron: "0 19 * * MON-THU" # Runs at 3 PM Eastern Daylight Time Monday Through Thursday (8 PM UTC)
workflow_dispatch:
permissions:
contents: write
jobs:
release:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout master branch
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: "0"
- name: Bump version
uses: superfly/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
VERBOSE: true
DEFAULT_BUMP: "patch"
GIT_API_TAGGING: false