Skip to content

Commit

Permalink
ci: Don't download aw-server if already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-bjareholt committed Jun 28, 2020
1 parent fed7701 commit 396ba79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
- name: lint
run: make lint
- name: Download aw-server
run: wget https://github.com/ActivityWatch/activitywatch/releases/download/v${{ matrix.aw-version }}/activitywatch-v${{ matrix.aw-version }}-linux-x86_64.zip
- name: Unzip activitywatch
run: unzip activitywatch-v${{ matrix.aw-version }}-linux-x86_64.zip
run: wget -nc https://github.com/ActivityWatch/activitywatch/releases/download/v${{ matrix.aw-version }}/activitywatch-v${{ matrix.aw-version }}-linux-x86_64.zip
- name: Unzip aw-server
run: unzip -o activitywatch-v${{ matrix.aw-version }}-linux-x86_64.zip
- name: Run tests
run: |
export PATH=./activitywatch/aw-server:$PATH
Expand Down

0 comments on commit 396ba79

Please sign in to comment.