We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f715877 commit e841db3Copy full SHA for e841db3
.github/workflows/test.yaml
@@ -83,3 +83,23 @@ jobs:
83
PALETTE_REGISTRY_CLI_VERSION=${{env.PALETTE_REGISTRY_CLI_VERSION}}
84
K9S_VERSION=${{env.K9S_VERSION}}
85
SPECTRO_CLI_VERSION=${{env.SPECTRO_CLI_VERSION}}
86
+
87
+ semantic:
88
+ name: "Semantic Release Dry Run"
89
+ needs: [run-ci]
90
+ runs-on: ubuntu-latest
91
+ if: ${{ !github.event.pull_request.draft }}
92
+ steps:
93
+ - name: Setup nodeJs
94
+ uses: actions/setup-node@v6
95
+ with:
96
+ node-version: "20"
97
98
+ - name: Check out code into the Go module directory
99
+ uses: actions/checkout@v6
100
101
+ - name: Install dependencies
102
+ run: npm ci
103
104
+ - name: Semantic Release Dry Run
105
+ run: npx semantic-release --dry-run
0 commit comments