Skip to content

Conversation

x1unix
Copy link
Owner

@x1unix x1unix commented Feb 8, 2022

Recently, GitHub Actions changed a way to declare environment variables which breaks our release process.

This PR fixes this by using a new way to set environment variables.

Before (broken):

      - name: Set release version
        run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/v}

New way (correct):

      - name: Set release version
        run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV

@x1unix x1unix merged commit 150bee6 into master Feb 8, 2022
@x1unix x1unix deleted the fix/github-actions-env branch February 8, 2022 19:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant