Skip to content

Commit

Permalink
Fix CI/CD errors (#91)
Browse files Browse the repository at this point in the history
- Fix concurrency checks
- Remove arm64 support
  • Loading branch information
dalyIsaac authored Jun 26, 2022
1 parent da3e657 commit 8768a25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull_request_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# we add the `triage` label.
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.pull_request.action == 'opened'
concurrency: pr-labels-{{ github.pull_request.number }}
concurrency: pr-labels-${{ github.pull_request.number }}
steps:
- name: Label opened pull requests with triage
env:
Expand All @@ -23,7 +23,7 @@ jobs:
# If triage is attached, fail.
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.pull_request.action != 'opened'
concurrency: pr-labels-{{ github.pull_request.number }}
concurrency: pr-labels-${{ github.pull_request.number }}
steps:
- name: Require labels
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
configuration: [Release]
platform: [x64, arm64]
platform: [x64]

steps:
- name: Checkout
Expand Down

0 comments on commit 8768a25

Please sign in to comment.