Skip to content

Commit

Permalink
moving to the directory before build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Harrington committed Mar 25, 2024
1 parent f79609b commit 8b6cd75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- run: sudo dpkg -i pandoc-3.1.7-1-amd64.deb
- run: echo $PWD
- run: ls -al ./
- run: ls -al ../
- run: sed -i 's/VERSIONNUMBER/${{ github.ref_name }}/g' ScratchWorksheets/SaveAndLoad.tex
- run: pdflatex -jobname=SaveAndLoad-${{ github.ref_name }} ScratchWorksheets/SaveAndLoad.tex
- run: cd ScratchWorksheets/
- run: sed -i 's/VERSIONNUMBER/${{ github.ref_name }}/g' SaveAndLoad.tex
- run: pdflatex -jobname=SaveAndLoad-${{ github.ref_name }} SaveAndLoad.tex
- run: ls -al .
- run: pandoc --standalone --self-contained --embed-resources --from markdown --output=Overview-${{ github.ref_name }}.pdf README.md
- run: pandoc --standalone --self-contained --embed-resources --from markdown --output=LetsMakeNametags-${{ github.ref_name }}.pdf makeNametags.md
Expand Down Expand Up @@ -51,8 +51,8 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: SaveAndLoad-${{ github.ref_name }}.pdf
asset_name: SaveAndLoad-${{ github.ref_name }}.pdf
asset_path: ScratchWorksheets/SaveAndLoad-${{ github.ref_name }}.pdf
asset_name: ScratchWorksheets/SaveAndLoad-${{ github.ref_name }}.pdf
asset_content_type: application/binary
- name: Upload PDF2
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 8b6cd75

Please sign in to comment.