https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
# this builds packages and runs our unit tests (make check)
- run: IS_RELEASE=${{ inputs.is_release}} builder/build.sh -v -m ${{ inputs.product }} ${{ matrix.os }}
- name: Get version number
- run: 'echo ::set-output name=version::$(readlink builder/tmp/latest)'
+ run: |
+ echo "version=$(readlink builder/tmp/latest)" >> $GITHUB_OUTPUT
id: getversion
- name: Upload packages as GH artifacts
uses: actions/upload-artifact@v3
# this builds packages and runs our unit test (make check)
- run: builder/build.sh -v -m ${{ matrix.product }} ${{ matrix.os }}
- name: Get version number
- run: 'echo ::set-output name=version::$(readlink builder/tmp/latest)'
+ run: |
+ echo "version=$(readlink builder/tmp/latest)" >> $GITHUB_OUTPUT
id: getversion
- name: Upload packages
uses: actions/upload-artifact@v3
- run: inv install-doc-deps-pdf
- id: get-version
- run: echo "pdns_version=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
+ run: |
+ echo "pdns_version=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- id: setup-ssh
run: |-