Skip to content

Commit

Permalink
Add config for Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TixieSalander committed Apr 22, 2024
1 parent 6fa0de6 commit ff1bc7d
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 3 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy-deuxfleurs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Build and deploy on Deuxfleurs infra
on:
workflow_dispatch:
push:
branches: deploy-to-deuxfleurs
jobs:
build_and_publish:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.125.2
HUGO_ENV: production
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Install Dart Sass
run: sudo snap install dart-sass
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Build Hugo
run: |
hugo -b "${{secrets.BASE_URL}}"
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@v1
- name: Deploy to Deuxfleurs
run: |
touch ~/.awsrc
echo "export AWS_ACCESS_KEY_ID=${{secrets.AWS_ACCESS_KEY_ID}}" >> ~/.awsrc
echo "export AWS_SECRET_ACCESS_KEY=${{secrets.AWS_SECRET_ACCESS_KEY}}" >> ~/.awsrc
echo "export AWS_DEFAULT_REGION='garage'" >> ~/.awsrc
mkdir ~/.aws
touch ~/.aws/credentials
echo "[default]" >> ~/.aws/credentials
echo "aws_access_key_id = ${{secrets.AWS_ACCESS_KEY_ID}}" >> ~/.aws/credentials
echo "aws_secret_access_key = ${{secrets.AWS_SECRET_ACCESS_KEY}}" >> ~/.aws/credentials
echo "region = garage" >> ~/.aws/credentials
function aws { command aws --endpoint-url https://garage.deuxfleurs.fr $@ ; }
aws --version
source ~/.awsrc
aws s3 website now-playing.web.deuxfleurs.fr --index-document index.html --error-document 404.html
aws s3 sync --delete public s3://now-playing
8 changes: 6 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseURL = "http://localhost:1313/"
baseURL = "http://localhost:1312/"
languageCode = "en-us"
title = "Now Playing"
mainSections = ["a"]
Expand All @@ -17,4 +17,8 @@ disableKinds = ["taxonomy"]
quality = 95
[security]
[security.funcs]
getenv = [ "^HUGO_", "CONTEXT", "URL" ]
getenv = [ "^HUGO_", "CONTEXT", "URL", "BASE_URL" ]
## Deploy into a Garage bucket at Deuxfleurs
[[deployment.targets]]
name = "deuxfleurs"
URL = "s3://now-playing?endpoint=garage.deuxfleurs.fr&region=garage&s3ForcePathStyle=true"
7 changes: 6 additions & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@
{{ end }}
{{ end }}

{{ $opts := dict
"transpiler" "dartsass"
"vars" site.Params.styles
"enableSourceMap" (not hugo.IsProduction)
}}
{{ $sass := resources.Get "/scss/style.scss" }}
{{ $style := $sass | resources.ToCSS | minify | fingerprint }}
{{ $style := $sass | resources.ToCSS $opts | minify | fingerprint }}
{{ $secureStyle := $style | resources.Fingerprint "sha512" }}
<link rel="preload" href="{{ $secureStyle.Permalink }}" as="style" />
<link rel="stylesheet" href="{{ $secureStyle.Permalink }}" integrity="{{ $secureStyle.Data.Integrity }}">
Expand Down

0 comments on commit ff1bc7d

Please sign in to comment.