Update deprecated set-output Github command

This commit is contained in:
Dion Moult
2024-06-11 14:48:37 +10:00
parent dea2b6e367
commit bfe36dddb7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,10 +62,10 @@ jobs:
- run: echo ${{ env.DATE }} - run: echo ${{ env.DATE }}
- name: Get current version - name: Get current version
id: version id: version
run: echo "::set-output name=version::$(cat ../../VERSION)" run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- name: Get current date - name: Get current date
id: date id: date
run: echo "::set-output name=date::$(date +'%y%m%d')" run: echo "date=$(date +'%y%m%d')" >> $GITHUB_OUTPUT
- name: Compile - name: Compile
run: | run: |
cp -r src/blenderbim src/blenderbim_${{ matrix.config.short_name }}_${{ matrix.pyver }} && cp -r src/blenderbim src/blenderbim_${{ matrix.config.short_name }}_${{ matrix.pyver }} &&
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
- run: echo ${{ env.DATE }} - run: echo ${{ env.DATE }}
- name: Get current version - name: Get current version
id: version id: version
run: echo "::set-output name=version::$(cat ../../VERSION)" run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- name: Compile - name: Compile
run: | run: |
cp -r src/ifcopenshell-python src/ifcopenshell_${{ matrix.config.short_name }}_${{ matrix.pyver }} && cp -r src/ifcopenshell-python src/ifcopenshell_${{ matrix.config.short_name }}_${{ matrix.pyver }} &&