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 a275769 commit a039308Copy full SHA for a039308
.github/workflows/deploy.yml
@@ -8,13 +8,24 @@ on:
8
- 'index.html'
9
10
jobs:
11
- build-deploy:
+ build-and-deploy:
12
runs-on: ubuntu-latest
13
+
14
steps:
- - name: Checkout repository
15
+ - name: Checkout Repository
16
uses: actions/checkout@v4
- - name: Upload artifact
17
18
+ - name: Create Deployment Directory
19
+ run: |
20
+ mkdir -p _site
21
+ cp index.html _site/
22
23
+ - name: Archive Artifact
24
+ run: tar -czf site.tar.gz _site/
25
26
+ - name: Upload Artifact
27
uses: actions/upload-pages-artifact@v3
28
29
- name: Deploy to Pages
30
uses: actions/deploy-pages@v4
31
with:
0 commit comments