From 7fd8f4ff1900952b6cfb5dc82143103d4585263b Mon Sep 17 00:00:00 2001 From: Kevin King <4kevinking@gmail.com> Date: Wed, 29 Sep 2021 18:41:05 -0700 Subject: [PATCH] recompile to fix scheduler url --- .github/workflows/tag.yaml | 48 +++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml index edb5b24..8caf230 100644 --- a/.github/workflows/tag.yaml +++ b/.github/workflows/tag.yaml @@ -8,32 +8,32 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - # - uses: actions-rs/toolchain@v1 - # with: - # toolchain: stable - - name: Download brr - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TAG: 0.0.7 - run: | - CURL="curl -s -H 'Authorization: Bearer ${GITHUB_TOKEN}' \ - https://api.github.com/repos/buildrecall/brr/releases"; \ - ASSET_ID=$(eval "$CURL/tags/$TAG" | jq .assets[0].id); \ - eval "$CURL/assets/$ASSET_ID -LJOH 'Accept: application/octet-stream'" - sudo mv brr-$TAG-x86_64-unknown-linux-musl /usr/bin/brr - sudo chmod +x /usr/bin/brr - brr + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + # - name: Download brr + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # TAG: 0.0.7 + # run: | + # CURL="curl -s -H 'Authorization: Bearer ${GITHUB_TOKEN}' \ + # https://api.github.com/repos/buildrecall/brr/releases"; \ + # ASSET_ID=$(eval "$CURL/tags/$TAG" | jq .assets[0].id); \ + # eval "$CURL/assets/$ASSET_ID -LJOH 'Accept: application/octet-stream'" + # sudo mv brr-$TAG-x86_64-unknown-linux-musl /usr/bin/brr + # sudo chmod +x /usr/bin/brr + # brr - - name: brr build - env: - BUILDRECALL_API_KEY: ${{ secrets.BUILDRECALL_API_KEY }} - run: | - brr pull cli + # - name: brr build + # env: + # BUILDRECALL_API_KEY: ${{ secrets.BUILDRECALL_API_KEY }} + # run: | + # brr pull cli - # - uses: actions-rs/cargo@v1 - # with: - # command: build - # args: --release + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release - name: Upload binaries to release uses: svenstaro/upload-release-action@v2