We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc105d8 commit f95ef2cCopy full SHA for f95ef2c
.github/workflows/test-action.yaml
@@ -0,0 +1,26 @@
1
+name: Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ release-version:
7
+ type: string
8
+ required: true
9
+ description: 'Version number (for example: 0.1.0)'
10
11
+jobs:
12
+ release:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write
16
+ id-token: write # This permission is required for trusted publishing
17
+ steps:
18
+ - name: Create new documentation
19
+ uses: ./.github/actions/publish-documentation
20
+ with:
21
+ codeflare_sdk_release_version: ${{ github.event.inputs.release-version }}
22
+ - name: Test waited for action
23
+ run: echo "Dummy Data"
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.CODEFLARE_MACHINE_ACCOUNT_TOKEN }}
26
+ shell: bash
0 commit comments