From 0d1e8adcbb25fc41d0ff1f4fcc83e7c48d95bbe2 Mon Sep 17 00:00:00 2001 From: Erik Fasterius Date: Wed, 16 Oct 2024 15:50:01 +0200 Subject: [PATCH] Rename `deploy` env/GHA to `publish` for clarity --- .github/workflows/{deploy.yml => publish.yml} | 6 +++--- env/{deploy => publish}/Dockerfile | 0 env/{deploy => publish}/environment.yml | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{deploy.yml => publish.yml} (77%) rename env/{deploy => publish}/Dockerfile (100%) rename env/{deploy => publish}/environment.yml (100%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/publish.yml similarity index 77% rename from .github/workflows/deploy.yml rename to .github/workflows/publish.yml index dd53bc37..8d82c196 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: deploy +name: Render and publish site on: push: @@ -7,8 +7,9 @@ on: - specky jobs: - deploy: + publish: runs-on: ubuntu-latest + container: ghcr.io/nbisweden/workshop-reproducible-research/publish:specky permissions: contents: write steps: @@ -18,7 +19,6 @@ jobs: - name: Deploy on GitHub Pages uses: quarto-dev/quarto-actions/publish@v2 - container: ghcr.io/nbisweden/workshop-reproducible-research/deploy with: target: gh-pages render: true diff --git a/env/deploy/Dockerfile b/env/publish/Dockerfile similarity index 100% rename from env/deploy/Dockerfile rename to env/publish/Dockerfile diff --git a/env/deploy/environment.yml b/env/publish/environment.yml similarity index 100% rename from env/deploy/environment.yml rename to env/publish/environment.yml