From d41ad952e7f34bb6b2200c5a8945e9302c0429ed Mon Sep 17 00:00:00 2001 From: Gal Topper Date: Sun, 12 Mar 2023 16:18:02 +0800 Subject: [PATCH] Fix Release warnings (#647) --- .github/workflows/push.yaml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index e4003fd0..15320e87 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -119,12 +119,6 @@ jobs: - name: Dump github ref run: echo "$GITHUB_REF" - - name: Extract ref info - id: release_info - run: | - echo ::set-output name=REF_BRANCH::${GITHUB_REF#refs/heads/} - echo ::set-output name=REF_TAG::${GITHUB_REF#refs/tags/} - - uses: actions/checkout@v3 - uses: actions/setup-go@v3 @@ -139,10 +133,9 @@ jobs: FRAMES_TAG: ${{ github.ref_name }} - name: Upload binaries - uses: AButler/upload-release-assets@v2.0 - with: - files: framesd-* - repo-token: ${{ secrets.GITHUB_TOKEN }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh release upload ${{ github.ref_name }} framesd-* - name: Login to GCR run: echo "$GCR_JSON_KEY" | docker login -u _json_key --password-stdin https://gcr.io