-
Notifications
You must be signed in to change notification settings - Fork 13
chores: cleanup deployments #135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
3af90d6
chores: remove duplicate config
mspiekermann 70b336c
remove npm deployment and use docker for dev and live
mspiekermann 3f97614
remove netlify references
mspiekermann 0cce9f3
update go.mod and go.sum
mspiekermann 628086d
update GH Action
mspiekermann 77ee5de
update GH Action
mspiekermann c71d124
add missing user option in GH Action
mspiekermann 34f5abe
install tar through docker as required by GH Action
mspiekermann e8c3ae5
update GH workflow to add tar
mspiekermann e3ab9c0
add postcss in workflow
mspiekermann f446459
add postcss in workflow
mspiekermann 7aa213e
check canonifyURLs = true
mspiekermann 31a5b0b
rm double run in workflow
mspiekermann c00908d
add baseURL in workflow
mspiekermann c07a348
add baseURL in workflow
mspiekermann 889cbd3
change fix URL in hugo.toml
mspiekermann b566046
fix workflow for flexible repos
mspiekermann 069bd5c
chores: revert workflow name
mspiekermann ae2588e
rm unnecessary scripts attribute in package.json
mspiekermann bf067b6
fix: incorporate feedback docker compose and gomod
mspiekermann a7fc085
rm install git in Dockerfile
mspiekermann 7ca01e7
clean workflow on dependencies install
mspiekermann e7aa47e
fix literal block in workflow file
mspiekermann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,10 +1,7 @@ | ||
| FROM floryn90/hugo:ext-alpine | ||
|
|
||
| # Ensure we are root while installing system packages so apk can lock/update its DB | ||
| USER root | ||
| RUN apk add --no-cache git && \ | ||
| git config --global --add safe.directory /src | ||
| RUN git config --global --add safe.directory /src | ||
|
|
||
| # (Optional) drop back to a non-root user if the base image expects one. | ||
| # You can uncomment and adjust the USER line below if you know the non-root username. | ||
| # USER hugo | ||
| WORKDIR /src | ||
| CMD ["server", "--bind", "0.0.0.0", "-D", "--ignoreCache"] |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,11 +1,10 @@ | ||
| services: | ||
|
|
||
| site: | ||
| image: eclipse-edc/eclipse-edc.github.io | ||
| web: | ||
| build: | ||
| context: . | ||
| command: server | ||
| ports: | ||
| - "1313:1313" | ||
| volumes: | ||
| - .:/src | ||
| ports: | ||
| - "1313:1313" | ||
| environment: | ||
| HUGO_CACHEDIR: /tmp/hugo-cache |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,7 @@ | ||
| module github.com/google/docsy-example | ||
| module github.com/eclipse-edc/eclipse-edc.github.io | ||
| go 1.22 | ||
|
|
||
| go 1.12 | ||
| require ( | ||
| github.com/google/docsy v0.12.0 | ||
| ) | ||
|
|
||
| require github.com/google/docsy v0.10.0 // indirect |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= | ||
| github.com/google/docsy v0.10.0 h1:6tMDacPwAyRWNCfvsn/9qGOZDQ8b0aRzjRZvnZPY5dg= | ||
| github.com/google/docsy v0.10.0/go.mod h1:c0nIAqmRTOuJ01F85U/wJPQtc3Zj9N58Kea9bOT2AJc= | ||
| github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= | ||
| github.com/FortAwesome/Font-Awesome v0.0.0-20241216213156-af620534bfc3/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= | ||
| github.com/google/docsy v0.12.0 h1:CddZKL39YyJzawr8GTVaakvcUTCJRAAYdz7W0qfZ2P4= | ||
| github.com/google/docsy v0.12.0/go.mod h1:1bioDqA493neyFesaTvQ9reV0V2vYy+xUAnlnz7+miM= | ||
| github.com/twbs/bootstrap v5.3.6+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| {{ template "_default/_markup/td-render-heading.html" . }} | ||
| {{- partial "td/render-heading.html" . -}} |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,42 +1,6 @@ | ||
| { | ||
| "name": "docsy-example-site", | ||
| "version": "0.10.0", | ||
| "version.next": "0.10.1-dev.0-unreleased", | ||
| "description": "Example site that uses Docsy theme for technical documentation.", | ||
| "repository": "github:google/docsy-example", | ||
| "homepage": "https://example.docsy.dev", | ||
| "author": "Docsy Authors", | ||
| "license": "Apache-2.0", | ||
| "bugs": "https://github.com/google/docsy-example/issues", | ||
| "spelling": "cSpell:ignore HTMLTEST precheck postbuild -", | ||
| "scripts": { | ||
| "_build": "npm run _hugo-dev --", | ||
| "_check:links": "echo IMPLEMENTATION PENDING for check-links; echo", | ||
| "_hugo": "hugo --cleanDestinationDir", | ||
| "_hugo-dev": "npm run _hugo -- -e dev -DFE", | ||
| "_local": "npx cross-env HUGO_MODULE_WORKSPACE=docsy.work", | ||
| "_serve": "npm run _hugo-dev -- --minify serve", | ||
| "build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"", | ||
| "build:production": "npm run _hugo -- --minify", | ||
| "build": "npm run _build -- ", | ||
| "check:links:all": "HTMLTEST_ARGS= npm run _check:links", | ||
| "check:links": "npm run _check:links", | ||
| "clean": "rm -Rf public/* resources", | ||
| "local": "npm run _local -- npm run", | ||
| "make:public": "git init -b main public", | ||
| "precheck:links:all": "npm run build", | ||
| "precheck:links": "npm run build", | ||
| "postbuild:preview": "npm run _check:links", | ||
| "postbuild:production": "npm run _check:links", | ||
| "serve": "npm run _serve", | ||
| "test": "npm run check:links", | ||
| "update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest", | ||
| "update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest" | ||
| }, | ||
| "devDependencies": { | ||
| "autoprefixer": "^10.4.14", | ||
| "cross-env": "^10.0.0", | ||
| "hugo-extended": "0.152.2", | ||
| "postcss-cli": "^11.0.0" | ||
| } | ||
| "name": "eclipse-edc-website", | ||
| "version": "0.14.0", | ||
| "private": true, | ||
| "description": "Eclipse EDC website built with Hugo and Docsy, deployed via Docker and GitHub Pages." | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.