From da33d3f8cd0d23309385524ce2d9f24b956d62d1 Mon Sep 17 00:00:00 2001 From: Antony Barja Date: Thu, 3 Aug 2023 07:53:24 -0500 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 37 ++++++----------------------------- 1 file changed, 6 insertions(+), 31 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e6addf9..e30a64b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,33 +1,8 @@ -on: - push: - branches: main - -name: Render and Publish - +name: hello-world +on: push jobs: - build-deploy: - runs-on: ubuntu-22.04 + my-job: + runs-on: ubuntu-latest steps: - - name: Checkout repo - uses: actions/checkout@v3 - - - name: Setup pandoc - uses: r-lib/actions/setup-pandoc@v2 - - - name: Setup R - uses: r-lib/actions/setup-r@v2 - - name: Set up Quarto - uses: quarto-dev/quarto-actions/setup@v2 - with: - # To install LaTeX to build PDF book - tinytex: true - # uncomment below and fill to pin a version - #version: 1.3.353 - - - name: Publish to GitHub Pages (and render) - uses: quarto-dev/quarto-actions/publish@v2 - with: - target: gh-pages - render: false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions + - name: my-step + run: echo "Hello World!"