8000 Fix CI by dhinakg · Pull Request #52 · tealbathingsuit/accord · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix CI #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Select Xcode version (14.0)
- name: Select Xcode version (14.1)
run: |
sudo xcode-select --switch /Applications/Xcode_14.0.app
sudo xcode-select --switch /Applications/Xcode_14.1.app

- name: Build app
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
zip -r ${{ github.workspace }}/Accord.zip .

- name: Upload app to artifacts
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v3
with:
name: Accord
path: ${{ github.workspace }}/Accord.zip
0