From 77d7fc8c6adc47301bacbbd95544f08e65917a2f Mon Sep 17 00:00:00 2001 From: ramin Date: Wed, 12 Jun 2024 12:02:56 +0100 Subject: [PATCH] realized the whitespace/formatting of this workflow was bugaloo (and probably my fault) showing weird syntax highlighting in github. removed empty line, and placed env before run --- .github/workflows/ci_release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index e7afa0b623..7d85ae9fdd 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -146,9 +146,8 @@ jobs: contents: write steps: - uses: actions/checkout@v4 - + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | make openrpc-gen > openrpc.json gh release upload ${{github.event.release.tag_name}} openrpc.json - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}