Skip to content

Commit

Permalink
potentially fixed the functional test issue, lets see
Browse files Browse the repository at this point in the history
  • Loading branch information
YashdalfTheGray committed Aug 5, 2023
1 parent ee56de5 commit 2eed853
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
- name: Build and test with Make
run: |
make ci-build platform="${{ runner.os }}" arch="${{ runner.arch }}"
make ci-build platform="${{ runner.os }}" arch="${{ matrix.arch }}"
make test
- name: Tar the artifacts
run: tar -cvf ${{ format('bin/federator-{0}-{1}-{2}.tar', runner.os, runner.arch, matrix.golang) }} ${{ format('bin/federator-{0}-{1}', runner.os, runner.arch) }}
run: tar -cvf ${{ format('bin/federator-{0}-{1}-{2}.tar', runner.os, matrix.arch, matrix.golang) }} ${{ format('bin/federator-{0}-{1}', runner.os, matrix.arch) }}

- name: Upload artifacts for the functional tests workflow
uses: actions/upload-artifact@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
with:
workflow: functional_tests.yml
workflow_conclusion: success
name: ${{ format('federator-{0}-{1}-{2}', runner.os, runner.arch, matrix.golang) }}
name: ${{ format('federator-{0}-{1}-{2}', runner.os, matrix.arch, matrix.golang) }}
path: bin/
repo: ${{github.repository}}

- name: Draft a release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: ${{ format('bin/federator-{0}-{1}-{2}', runner.os, runner.arch, matrix.golang) }}
artifacts: ${{ format('bin/federator-{0}-{1}-{2}', runner.os, matrix.arch, matrix.golang) }}
body: ${{ format('Built from {0}', github.sha) }}
commit: ${{ github.sha }}
draft: true
Expand Down

0 comments on commit 2eed853

Please sign in to comment.