forked from project-codeflare/codeflare-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc105d8
commit 1d5e9ab
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Test Action | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release-version: | ||
type: string | ||
required: true | ||
description: 'Version number (for example: 0.1.0)' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write # This permission is required for trusted publishing | ||
steps: | ||
- name: Create new documentation | ||
uses: ./.github/actions/publish-documentation | ||
with: | ||
codeflare_sdk_release_version: ${{ github.event.inputs.release-version }} | ||
- name: Test waited for action | ||
run: echo "Dummy Data" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CODEFLARE_MACHINE_ACCOUNT_TOKEN }} | ||
shell: bash |