Skip to content

Commit 7d710fc

Browse files
committed
fix(cicd): fix add checkout to the deploy step
1 parent e175f49 commit 7d710fc

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ jobs:
5252
runs-on: self-hosted
5353
needs: build
5454
steps:
55+
- name: Checkout
56+
uses: actions/checkout@v3
5557
- name: Download Storybook
5658
uses: actions/download-artifact@v3
5759
with:
@@ -69,8 +71,8 @@ jobs:
6971
7072
- name: Update content
7173
run: |
72-
sudo docker cp ./out landing-page-server:/www/data/
73-
sudo docker cp ./storybook-static landing-page-server:/www/data/
74+
sudo docker cp ./out server:/www/data/
75+
sudo docker cp ./storybook-static server:/www/data/
7476
7577
# - uses: dorny/paths-filter@v2.2.1
7678
# id: filter

0 commit comments

Comments
 (0)