Skip to content

Commit

Permalink
chore: fix deprecated github set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
digikata committed Jan 13, 2024
1 parent 3d6e535 commit 256148f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,20 @@ jobs:
if [[ -z "${{ github.event.inputs.commit }}" ]]; then
export GITHUB_VERSION=$(curl -fsS https://raw.githubusercontent.com/infinyon/fluvio/${{ github.sha }}/VERSION)
echo "VERSION=${GITHUB_VERSION}" | tee -a $GITHUB_ENV
echo "::set-output name=VERSION::${GITHUB_VERSION}"
echo "VERSION=${GITHUB_VERSION}" >> $GITHUB_OUTPUT
echo "GIT_SHA=${{ github.sha }}" | tee -a $GITHUB_ENV
echo "::set-output name=GIT_SHA::${{ github.sha }}"
echo "GIT_SHA=${{ github.sha }}" >> $GITHUB_OUTPUT
else
export GITHUB_VERSION=$(curl -fsS https://raw.githubusercontent.com/infinyon/fluvio/${{ github.event.inputs.commit }}/VERSION)
echo "VERSION=${GITHUB_VERSION}" | tee -a $GITHUB_ENV
echo "::set-output name=VERSION::${GITHUB_VERSION}"
echo "VERSION=${GITHUB_VERSION}" >> $GITHUB_OUTPUT
echo "GIT_SHA=${{ github.event.inputs.commit }}" | tee -a $GITHUB_ENV
echo "::set-output name=GIT_SHA::${{ github.event.inputs.commit }}"
echo "GIT_SHA=${{ github.sha }}" >> $GITHUB_OUTPUT
fi
- name: Set Installer URL
id: installer_step
run: |
echo "::set-output name=INSTALLER_URL::https://raw.githubusercontent.com/infinyon/fluvio/${{ steps.version_step.outputs.GIT_SHA }}/install.sh"
echo "INSTALLER_URL=https://raw.githubusercontent.com/infinyon/fluvio/${{ steps.version_step.outputs.GIT_SHA }}/install.sh" >> $GITHUB_OUTPUT
- name: Slack Notification
uses: 8398a7/action-slack@v3
Expand Down

0 comments on commit 256148f

Please sign in to comment.