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 bdd398d commit 94b07fbCopy full SHA for 94b07fb
.github/workflows/deploy-staging.yml
@@ -13,12 +13,15 @@ jobs:
13
# Check-out the repository under $GITHUB_WORKSPACE.
14
- uses: actions/checkout@master
15
16
+ - name: Install dependencies.
17
+ run: npm ci
18
+
19
# Build the website with Eleventy.
- - name: Building Eleventy…
- run: npm i && npm run build
20
+ - name: Build Eleventy.
21
+ run: npm run build
22
23
# Rsync files via SSH.
- - name: Syncing files with server…
24
+ - name: Sync files with server.
25
uses: burnett01/rsync-deployments@master
26
with:
27
switches: -rlD --delete --exclude='.htaccess'
0 commit comments