Skip to content

Commit

Permalink
Build fix (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-E-angelo committed Mar 10, 2021
1 parent e2c435a commit aaef6c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/publish-release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
with:
name: store
path: ./
- name: Get base branch
id: vars
run: |
base_ref=${{ env.BRANCH_REFERENCE }}
echo ::set-output name=base_branch::${base_ref#refs/*/}
- name: Create Pull Request for CHANGELOG
uses: peter-evans/create-pull-request@v3
with:
Expand All @@ -66,7 +71,7 @@ jobs:
[1]: https://github.com/peter-evans/create-pull-request
labels: automerge
base: ${{ env.BRANCH_REFERENCE }}
base: ${{ steps.vars.outputs.base_branch }}
branch: automated/changelog
build:
needs: [load_and_push]
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
with:
name: store
path: ./
- name: Get base branch
id: vars
run: |
base_ref=${{ env.BRANCH_REFERENCE }}
echo ::set-output name=base_branch::${base_ref#refs/*/}
- name: Create Pull Request for CHANGELOG
uses: peter-evans/create-pull-request@v3
with:
Expand All @@ -63,5 +68,5 @@ jobs:
[1]: https://github.com/peter-evans/create-pull-request
labels: automerge
base: ${{ env.BRANCH_REFERENCE }}
base: ${{ steps.vars.outputs.base_branch }}
branch: automated/changelog

0 comments on commit aaef6c6

Please sign in to comment.