Skip to content

Commit c34621c

Browse files
committed
action workflow
1 parent 70faf90 commit c34621c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/latex-builder.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
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 "::set-output name=version::$(cat version)"
16+
run: echo "version=$(cat version)" >> $GITHUB_OUTPUT
1717
id: version
18-
- name: Build PDFs
18+
- name: Attempting to build PDFs
1919
run: make
2020
release-it:
2121
permissions:
@@ -30,10 +30,10 @@ jobs:
3030
run: sudo apt update && sudo apt-get install -y texlive-full
3131
- name: Get version from file
3232
id: get_version
33-
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
33+
run: echo "VERSION=$(cat version)" >> $GITHUB_OUTPUT
3434
- name: Name release from version
3535
id: get_release
36-
run: echo "RELEASE=release_$(cat version)" >> $GITHUB_ENV
36+
run: echo "RELEASE=release_$(cat version)" >> $GITHUB_OUTPUT
3737
- name: Build PDFs
3838
run: make
3939
- name: Upload PDFs archives

0 commit comments

Comments
 (0)