Skip to content

Commit

Permalink
ci: test deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
lajbel committed Dec 27, 2024
1 parent b2a1dcc commit 53b6976
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ jobs:
with:
submodules: true
fetch-tags: true
- name: Get Latest Tag
uses: WyriHaximus/[email protected]
with:
prefix: "4000"
- name: Checkout submodule to v4000
run: |
cd kaplay
git fetch --tags
git checkout 4000.0.0-alpha.13
git checkout ${{ steps.previoustag.outputs.tag }}
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Deploy app
Expand All @@ -33,11 +37,15 @@ jobs:
with:
submodules: true
fetch-tags: true
- name: Get Latest Tag
uses: WyriHaximus/[email protected]
with:
prefix: "3000"
- name: Checkout submodule to v3001
run: |
cd kaplay
git fetch --tags
git checkout 3001.0.5
git checkout ${{ steps.previoustag.outputs.tag }}
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Deploy app
Expand Down

0 comments on commit 53b6976

Please sign in to comment.