Skip to content

Commit

Permalink
ci: add missing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
janvennemann committed Nov 9, 2023
1 parent 7825475 commit 2aeb51f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ jobs:
node-version: '16'
registry-url: 'https://registry.npmjs.org'

- name: Install Titanium CLI
run: npm i -g titanium

- name: Cache Titanium SDK
id: titanium-cache
uses: actions/cache@v2
with:
path: ~/.titanium/mobilesdk/linux/${{ env.SDK_VERSION }}
key: ${{ runner.os }}-titanium-sdk-${{ env.SDK_VERSION }}
restore-keys: |
${{ runner.os }}-titanium-sdk-
- name: Install dependencies
run: yarn
if: steps.node-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 2aeb51f

Please sign in to comment.