Skip to content

Commit

Permalink
fix(ci): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
defclass committed Feb 1, 2021
1 parent 73073bc commit caafc7b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-desktop-release.yml
Expand Up @@ -61,23 +61,23 @@ jobs:
runs-on: macos-latest

steps:
- name: Check out Git repository
- name: Check out Git Repository
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 14

- name: Install brew & clojure
- name: Install Brew & Clojure
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install clojure/tools/clojure
- name: Build/release Electron app
- name: Build/Release Electron app
run: yarn install && yarn release-electron

- name: Change artifact name
- name: Change Artifact Name
run: mv static/out/make/Logseq.dmg static/out/make/Logseq-x86.dmg

- name: Cache Artifact
Expand All @@ -91,13 +91,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Download the MacOS X64 Asset
- name: Download The MacOS X64 Asset
uses: actions/download-artifact@v1
with:
name: Logseq-x64.dmg
path: ./

- name: Download the Linux Asset
- name: Download The Linux Asset
uses: actions/download-artifact@v1
with:
name: Logseq-linux.zip
Expand All @@ -117,7 +117,7 @@ jobs:
draft: true
prerelease: true

- name: Upload Release Asset
- name: Upload MacOS X64 Artifact
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
Expand All @@ -128,7 +128,7 @@ jobs:
asset_name: logseq-darwin-x64-${{ github.event.inputs.tag-name }}.dmg
asset_content_type: application/x-apple-diskimage

- name: Upload Release Asset
- name: Upload Linux Artifact
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit caafc7b

Please sign in to comment.