Skip to content

Commit

Permalink
Release workflow no work yet (#1096)
Browse files Browse the repository at this point in the history
Fix some bugs with the new push-button release workflow.
  • Loading branch information
Mr0grog authored Mar 16, 2023
1 parent 6ec1677 commit 37d929d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:

build:
executor: rails_executor
environment:
PARALLEL_WORKERS: "1"
steps:
- checkout
- setup_bundler
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: main
fetch-depth: 0

- name: Update release branch
run: |
git config user.name 'GH Actions Bot'
git config user.email 'actions.bot@example.com'
git fetch origin main
git fetch origin release
git checkout release
git pull
git merge main -m '${{ inputs.message }}'
Expand Down

0 comments on commit 37d929d

Please sign in to comment.