Skip to content

Commit

Permalink
ci: enable manual run of patch release (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdnoC committed Sep 7, 2023
1 parent a4597d5 commit 0345aa9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/scripts/prepare_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

# Fail on first error.
set -e

releaseLevel="$1"

oldVersion="$(node -pe 'require("./package.json").version')"
npx standard-version --release-as "$releaseLevel" --skip.commit=true --skip.tag=true
newVersion="$(node -pe 'require("./package.json").version')"

sed -i -e "s/ VERSION\\s*=\\s*\"$oldVersion\"/ VERSION = \"$newVersion\"/" version.rb
12 changes: 10 additions & 2 deletions .github/workflows/auto-patch-release.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
name: Automatically create patch release every 2 weeks
on:
schedule:
# Run every Friday right before midnight
- cron: '59 23 * * 5'
# Run every Thursday right before midnight
- cron: '59 23 * * 4'
workflow_dispatch:
jobs:
create_patch_release:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Determine if we skip cancel checks
id: skip-checks
shell: bash
# Skip checks if we are not a scheduled run
run: echo value=$(test ${{ github.event_name }} != schedule && echo true || echo false) >> "$GITHUB_OUTPUT"

- name: Create release
uses: dequelabs/axe-api-team-public/.github/actions/auto-patch-release-v1@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
skip_checks: ${{ steps.skip-checks.outputs.value }}
project_token: ${{ secrets.GH_PROJECT_TOKEN }}
slack_webhook: ${{ secrets.SLACK_WEBHOOK }}
odd_release: 'true'
Expand Down

0 comments on commit 0345aa9

Please sign in to comment.