Skip to content

Commit

Permalink
⚗️ Testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mirrodi committed Mar 12, 2024
1 parent 697b4d8 commit c8ad1e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Git checkout to main branch # the workflow is triggered in the default branch, which doesn't have to be MAIN
uses: actions/checkout@v4
with: { ref: main } # this also serves as a safeguard for workflows triggered manually
# with: { ref: main } # this also serves as a safeguard for workflows triggered manually

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build and publish to test

on:
workflow_dispatch:
push:
branches:
- 'sprint'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- name: Git checkout to main branch # Releases are published on main branch
uses: actions/checkout@v4
with: { ref: main }
# with: { ref: main }

- name: Install Java and Maven
uses: actions/setup-java@v3
Expand Down

0 comments on commit c8ad1e7

Please sign in to comment.