Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
Adds test command and print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mxskylar committed Feb 11, 2024
1 parent 81d4cad commit 72f4049
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/dev-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,24 @@ jobs:
uses: actions/configure-pages@v3
- name: Make dev directory
shell: bash
run: "mkdir -p ./_dev/${{ github.ref_name }}; ls -la; ls -la _dev; ls -la _dev/mxskylar_dev_deploy"
run: "PROJECT=\"$(basename $(pwd))\"; cd ..; mkdir _tmp; cp $PROJECT/* _tmp; mkdir -p $PROJECT/_dev/${{ github.ref_name }}; cp _tmp/* $PROJECT/_dev/${{ github.ref_name }}; rm -rf _tmp"
- name: ls
shell: bash
run: "ls -la _dev/mxskylar_dev_deploy"
- name: Build
uses: actions/jekyll-build-pages@v1
with:
destination: "./_dev/${{ github.ref_name }}"
- name: ls
shell: bash
run: "ls -la"
run: "ls -la _dev/mxskylar_dev_deploy"
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./_dev/${{ github.ref_name }}"
- name: ls
shell: bash
run: "ls -la; ls -la _dev; ls -la _dev/mxskylar_dev_deploy"
run: "ls -la _dev/mxskylar_dev_deploy"
deploy:
runs-on: ubuntu-latest
needs: build
Expand Down

0 comments on commit 72f4049

Please sign in to comment.