We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40f8e87 commit cb174b4Copy full SHA for cb174b4
1 file changed
.github/workflows/push.yaml
@@ -15,7 +15,6 @@ jobs:
15
name: Check Formatting 🔍
16
if: github.ref_name == 'master' || github.ref_name == 'main'
17
uses: ./.github/workflows/check-format.yaml
18
- continue-on-error: true
19
permissions:
20
contents: read
21
@@ -28,15 +27,12 @@ jobs:
28
27
29
publish-nightly:
30
name: Publish Plugin Build 📦
31
- if: |
32
- always() &&
33
- needs.build-project.result != 'cancelled' &&
34
- (github.ref_name == 'master' || github.ref_name == 'main') &&
35
- github.ref_type == 'branch'
36
needs: build-project
+ if: ${{ always() && needs.build-project.result != 'cancelled' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main') }}
37
runs-on: ubuntu-24.04
38
39
contents: write
+ actions: read
40
defaults:
41
run:
42
shell: bash
0 commit comments