Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy GitHub Actions workflow #1310

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ jobs:
- name: Halt on workflow_dispatch trigger
run: |
echo The workflow was manually triggered, so no version bump will be pushed.
build:
uses: ./.github/workflows/build.yml
bump-version:
name: 'Bump version on main branch'
needs: [build]
needs: [if_manual]
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ on:
type: string
jobs:
build:
name: Build Check
uses: ./.github/workflows/build.yml
bump:
name: Bump Version
uses: ./.github/workflows/bump.yml
deploy:
needs: [build, bump]
Expand Down