File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 1313 - name : Install LaTex utilities
1414 run : sudo apt update && sudo apt-get install -y texlive-full
1515 - name : Get version from file
16- run : echo "version =$(cat version)" >> $GITHUB_OUTPUT
16+ run : echo "VERSION =$(cat version)" >> " $GITHUB_OUTPUT"
1717 id : version
1818 - name : Attempting to build PDFs
1919 run : make
2626 steps :
2727 - name : Checkout repository
2828 uses : actions/checkout@v4
29- - name : Install LaTex utilities
30- run : sudo apt update && sudo apt-get install -y texlive-full
3129 - name : Get version from file
3230 id : get_version
33- run : echo "VERSION=$(cat version)" >> $GITHUB_OUTPUT
34- - name : Name release from version
35- id : get_release
36- run : echo "RELEASE=release_$(cat version)" >> $GITHUB_OUTPUT
31+ run : echo "VERSION=$(cat version)" >> "$GITHUB_OUTPUT"
3732 - name : Build PDFs
3833 run : make
3934 - name : Upload PDFs archives
5550 build/module07.pdf
5651 build/module08.pdf
5752 build/module09.pdf
58- name : ${{env.RELEASE }}
59- tag_name : ${{env .VERSION}}
53+ name : ${{steps.get_version.outputs.VERSION }}
54+ tag_name : ${{steps.get_version.outputs .VERSION}}
6055 make_latest : true
6156 body_path : CHANGELOG.md
Original file line number Diff line number Diff line change 66- refacto : one file per exercise
77- Added satisfaction forms within PDFs
88- indentation and overflows fixs
9- - corrected spelling mistakes
9+ - corrected spelling mistakes
10+ - Updated Github actions
You can’t perform that action at this time.
0 commit comments