-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joshua T Kalis
committed
Sep 20, 2024
1 parent
79d66dd
commit a60df59
Showing
3 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,9 +29,9 @@ jobs: | |
|
||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: denoland/setup-deno@v1.1.1 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.x # Run with latest stable Deno. | ||
|
||
|
@@ -41,23 +41,17 @@ jobs: | |
- name: Build site files | ||
run: deno task build | ||
|
||
- name: Compile CSS | ||
uses: gha-utilities/[email protected] | ||
with: | ||
source: styles/kalisjoshua.scss | ||
destination: ./docs/css/kalisjoshua.css | ||
|
||
- name: Create archive | ||
shell: bash | ||
run: tar --directory ./docs/ -cvf "$RUNNER_TEMP/artifact.tar" . | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: github-pages | ||
path: ${{ runner.temp }}/artifact.tar | ||
retention-days: 1 | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 | ||
uses: actions/deploy-pages@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters