We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81eab5d commit 2e2bd55Copy full SHA for 2e2bd55
.github/workflows/build.yml
@@ -46,9 +46,9 @@ jobs:
46
run: |
47
BRANCH="${GITHUB_REF#refs/heads/}"
48
if [ "$BRANCH" == 'main' ] ; then
49
- echo "::set-output name=tag::latest"
+ echo "tag=latest" >> $GITHUB_OUTPUT
50
else
51
- echo "::set-output name=tag::$BRANCH"
+ echo "tag=$BRANCH" >> $GITHUB_OUTPUT
52
fi
53
- name: Set up QEMU
54
uses: docker/setup-qemu-action@v2
.github/workflows/release.yml
@@ -53,7 +53,7 @@ jobs:
ref: ${{ github.event.inputs.commit_ref }}
- id: get_sha
55
56
- echo "::set-output name=sha::$(git rev-parse HEAD)"
+ echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
57
- uses: actions/github-script@v3
58
with:
59
github-token: ${{ secrets.MOVE2KUBE_PATOKEN }}
0 commit comments