Skip to content

Commit

Permalink
fix: migrate to action
Browse files Browse the repository at this point in the history
  • Loading branch information
bojanrajh committed Oct 14, 2024
1 parent bc53ea7 commit 3816959
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/checkout-test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
!./src/**/node_modules/**
if-no-files-found: error
name: embed-${{ github.sha }}
path: embed.zip
# path: embed.zip

- name: Upload DB index
uses: actions/upload-artifact@v4
Expand All @@ -72,7 +72,7 @@ jobs:
!./src/**/_source/**
if-no-files-found: error
name: db-index-${{ github.sha }}
path: src/db-index.zip
# path: src/db-index.zip

test-dev:
name: Test dev
Expand All @@ -91,6 +91,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: embed-${{ github.sha }}
path: embed.zip

- name: Unzip artifact
run: |
Expand Down Expand Up @@ -119,6 +120,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: embed-${{ github.sha }}
path: embed.zip

- name: Unzip artifact
run: |
Expand Down Expand Up @@ -174,10 +176,12 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: embed-${{ github.sha }}
path: embed.zip

- uses: actions/download-artifact@v4
with:
name: full-build-${{ github.sha }}
path: full-build.zip

- name: Unzip artifact
run: |
Expand Down Expand Up @@ -237,6 +241,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: full-build-${{ github.sha }}
path: full-build.zip

- name: Unzip artifact
run: |
Expand Down Expand Up @@ -272,6 +277,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: db-index-${{ github.sha }}
path: db-index.zip

#- uses: actions/download-artifact@v4
# with:
Expand Down

0 comments on commit 3816959

Please sign in to comment.