Skip to content

Commit

Permalink
test workflow add
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi-kumar-pilla committed Apr 19, 2024
1 parent 53828e0 commit 865bbda
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/my-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow is used to test the GitHub action publish-kedro-viz

name: Test publish-kedro-viz

permissions:
contents: write
pages: write
id-token: write

on:
push:
branches:
- "*"
paths-ignore:
- "*.md"
pull_request:
branches:
- main
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Fetch the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Project Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy Kedro-Viz to GH Pages
uses: kedro-org/publish-kedro-viz@v1
with:
publishing_source: 'workflow'

0 comments on commit 865bbda

Please sign in to comment.