Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
branches:
- trunk
- develop
- temp-testing-branch
workflow_dispatch:
env:
SOURCE_REF: ${{ github.ref_name }}
Expand All @@ -15,6 +14,10 @@ jobs:
build:
name: Build and Commit
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
steps:
- name: Setup BUILT_BRANCH env
run: echo "BUILT_BRANCH=${SOURCE_REF}-built" >> $GITHUB_ENV
Expand Down Expand Up @@ -79,7 +82,7 @@ jobs:
- name: Commit built files
run: |
# Add the built files
git add -Af vendor/ build/
git add -A vendor/ build/
git status -s
# Commit the changes using the commit message file
git commit -F final_commit_message.txt --no-verify
Expand Down