diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index eecd1a4..4c30e17 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -4,17 +4,23 @@ jobs: runs-on: docker steps: - uses: actions/checkout@v3 + - run: ls -alh ${{ GITHUB_WORKSPACE }} jekyll: needs: setup runs-on: docker container: image: jekyll/builder:latest steps: + - name: Jekyll here? + run: jekyll help - name: Change to source - run: cd ${{ GITHUB_WORKSPACE }} - - name: Update Gems - run: bundle update - - name: Build Site - run: jekyll build - - name: Check the output - run: ls -alh ./_site + run: | + cd ${{ GITHUB_WORKSPACE }} + pwd + ls -alh + # - name: Update Gems + # run: bundle update + # - name: Build Site + # run: jekyll build + # - name: Check the output + # run: ls -alh ./_site