File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -102,15 +102,17 @@ jobs:
102102 run : |
103103 if [ "${{ github.event_name }}" != "workflow_dispatch" ] || [ "${{ inputs.input_year }}" = "latest" ]; then \
104104 echo "TEXLIVE_YEAR=latest" >> $GITHUB_ENV; \
105+ echo "TEXLIVE_YEAR=latest"; \
105106 wget --no-check-certificate https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz; \
106107 zcat < install-tl-unx.tar.gz | tar -xf -; \
107108 echo "YEAR=$(ls -d install-tl-2* | cut -c 12-15)" >> $GITHUB_ENV; \
109+ echo "YEAR=$(ls -d install-tl-2* | cut -c 12-15)"; \
108110 else \
109111 echo "TEXLIVE_YEAR=${{ inputs.input_year }}" >> $GITHUB_ENV; \
112+ echo "TEXLIVE_YEAR=${{ inputs.input_year }}"; \
110113 echo "YEAR=${{ inputs.input_year }}" >> $GITHUB_ENV; \
114+ echo "YEAR=${{ inputs.input_year }}"; \
111115 fi
112- echo "TEXLIVE_YEAR=${TEXLIVE_YEAR}"
113- echo "YEAR=${YEAR}"
114116
115117 # Extract metadata (tags, labels) for Docker
116118 # https://github.com/docker/metadata-action
You can’t perform that action at this time.
0 commit comments