Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Apr 22, 2024
1 parent 3a1c2ad commit e050bf3
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/Full_Build_Upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,12 @@ on:
workflow_dispatch:

jobs:
check-commit-message:
runs-on: ubuntu-latest
outputs:
should_build: ${{ steps.check.outputs.result }}
steps:
- name: Check commit message
id: check
run: |
if [[ "${{ github.event.workflow_run.head_commit.message }}" =~ ^(build|rebuild)$ ]]; then
echo "::set-output name=result::true"
else
echo "::set-output name=result::false"
fi
Build-Subsystem-Manager:
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python: ['3.10']
runs-on: ${{ matrix.os }}
needs: check-commit-message
if: ${{ needs.check-commit-message.outputs.should_build == 'true' }}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit e050bf3

Please sign in to comment.