We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f29e82 commit 26b7060Copy full SHA for 26b7060
.github/workflows/dev-manual.yml
@@ -7,11 +7,17 @@ jobs:
7
name: deploy-theme
8
runs-on: [self-hosted, linux, stage]
9
steps:
10
+ - name: setup-git
11
+ run: |
12
+ git config --global user.name "github-actions"
13
+ git config --global user.email "[email protected]"
14
+ - name: clone-repo
15
16
+ git clone https://github.com/${{ github.repository }} repo
17
+ cd repo
18
+ git checkout ${{ github.sha }}
19
- name: deploy-theme
20
run: |
- cd "$GITHUB_WORKSPACE"
- git clone "https://github.com/$GITHUB_REPOSITORY.git" .
- git checkout "$GITHUB_SHA"
21
chown -R :client .
22
chmod -R g+w .
23
make deploy
0 commit comments