Skip to content

Commit

Permalink
fix: update action name
Browse files Browse the repository at this point in the history
  • Loading branch information
wrussell1999 authored Oct 30, 2024
1 parent 086bd78 commit 32589e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/docs/version-control-cicd/cicd/01.github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
name: Kestra validate
steps:
- name: Validate all flows on server-side
uses: actions/kestra-validate-action@develop
uses: kestra-io/validate-action@develop
with:
directory: ./kestra/flows
server: https://kestra.io/
Expand All @@ -47,15 +47,15 @@ jobs:
# We can only deploy to one namespace at once,
# so we have two different steps for our two namespaces product and engineering
- name: Deploy product flows
uses: actions/kestra-deploy-action@develop
uses: kestra-io/deploy-action@develop
with:
namespace: product
directory: ./kestra/flows/product
server: https://kestra.io/
apiToken: ${{ secrets.KESTRA_API_TOKEN }}

- name: Deploy engineering flows
uses: actions/kestra-deploy-action@develop
uses: kestra-io/deploy-action@develop
with:
namespace: engineering
directory: ./kestra/flows/engineering
Expand Down

0 comments on commit 32589e6

Please sign in to comment.