Skip to content

Commit

Permalink
testing action remove commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobbins228 committed Oct 16, 2024
1 parent cc105d8 commit 1d5e9ab
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-action.yaml
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

0 comments on commit 1d5e9ab

Please sign in to comment.