Skip to content

Commit f95ef2c

Browse files
committed
testing action remove commit
1 parent cc105d8 commit f95ef2c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/test-action.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)