diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b6faf0b..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Convert Jupyter Notebook to Markdown - -on: - push: - paths: - - 'rapport.ipynb' - - -jobs: - convert: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Install Quarto CLI - run: | - curl -s https://install.quarto.org | bash - - - name: Convert Jupyter notebook to Markdown - run: quarto convert rapport.ipynb --to markdown - - - name: Commit and push - uses: EndBug/add-and-commit@v7 - with: - message: 'Update README.md from rapport.ipynb' - add: 'README.md' \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index fe155c1..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,25 +0,0 @@ -on: - workflow_dispatch: - push: - branches: main - -name: Quarto Publish - -jobs: - build-deploy: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Check out repository - uses: actions/checkout@v4 - - - name: Set up Quarto - uses: quarto-dev/quarto-actions/setup@v2 - - - name: Render and Publish - uses: quarto-dev/quarto-actions/publish@v2 - with: - target: gh-pages - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file