From fc5bea854ade5b9212d504cbc97de6d6a559d84b Mon Sep 17 00:00:00 2001 From: Tim Downey Date: Sat, 10 Feb 2024 22:33:26 -0700 Subject: [PATCH] Dockerfile now sets RBENV_ROOT in an accessible place --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f57f09f..a0606b2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,7 @@ name: Deploy Site defaults: run: - shell: bash -leo pipefail {0} + shell: bash on: push: branches: @@ -29,6 +29,6 @@ jobs: steps: - uses: actions/checkout@v2 - name: Deploy Blog - run: pwd && source /.bashrc && rake deploy:blog + run: run: eval "$(rbenv init -)" && rake deploy:blog - name: Deploy Photos - run: pwd && source /.bashrc && rake deploy:photo + run: run: eval "$(rbenv init -)" && rake deploy:photo