We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7620be4 commit 134ba2aCopy full SHA for 134ba2a
.github/workflows/deployment.yaml
@@ -14,18 +14,10 @@ jobs:
14
runs-on: ubuntu-20.04
15
16
steps:
17
- - name: Checkout repository
18
- uses: actions/checkout@v3
19
- with:
20
- repository: mikiken/mikiken.net
21
- submodules: recursive
22
- path: /home/runner/work/mikiken.net
23
-
24
- - name : cd to mikiken.net
+ - name: Clone repository
25
run: |
26
- cd /home/runner/work/mikiken.net
27
- pwd
28
- ls -la
+ git clone https://github.com/mikiken/mikiken.net.git
+ cd mikiken.net
29
30
- name: Configure git
31
@@ -42,7 +34,4 @@ jobs:
42
34
git commit -m "Update submodule via github-actions"
43
35
44
36
- name: Push changes
45
- uses: ad-m/github-push-action@master
46
47
- github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
48
- branch: main
37
+ run : git push origin main
0 commit comments