Cron #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cron | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: "30 21 * * 1-5" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
check-version: | |
name: Check version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: | | |
npx auto version | |
- run: | | |
if [[ "$(npx auto version)" != "patch" ]]; | |
then | |
echo "Not a patch version" | |
else | |
echo "::error::It is a patch version" | |
exit 1 | |
fi | |
- run: | | |
if [[ "$(npx auto version)" != "major" ]]; | |
then | |
echo "Not a major version" | |
else | |
echo "::error::It is a major version" | |
exit 1 | |
fi | |
- if: ${{ github.event.schedule && github.event.inputs.mode != 'force-version' && github.event.inputs.version != '' }} | |
run: | | |
echo "::error::Please choose version mode when forcing a version number" | |
exit 1 | |
- if: ${{ github.event.schedule && github.event.inputs.mode == 'force-version' && github.event.inputs.version == '' }} | |
run: | | |
echo "::error::Please enter a version number when forcing a specific publish version" | |
exit 1 | |
build: | |
name: Node v${{ matrix.node }} | |
needs: check-version | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 |