-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from FriendsOfREDAXO/next-2
NEXT 2
- Loading branch information
Showing
80 changed files
with
1,165 additions
and
4,367 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Editor configuration, see https://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Generate | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "source/**/*" | ||
|
||
concurrency: | ||
# Cancel in-progress jobs if a new job is trigged by a commit from the same branch | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
generate: | ||
name: Generate image files from source | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
# Ref is required if auto-commit action is used in pull requests. | ||
# https://github.com/stefanzweifel/git-auto-commit-action#checkout-the-correct-branch | ||
ref: ${{ github.head_ref }} | ||
# Token is required to trigger new workflow runs after auto-commit action. | ||
# https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs | ||
token: ${{ secrets.GH_WORKFLOW }} | ||
|
||
- name: Setup Deno | ||
# https://github.com/marketplace/actions/setup-deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: "^1" | ||
|
||
- name: Run generator script | ||
run: deno task start | ||
|
||
- name: Auto-commit changed files | ||
# Automatically commit files which have been changed during the workflow run and push changes back | ||
# to remote repository. | ||
# https://github.com/marketplace/actions/git-auto-commit | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "GenerRRRRR-ate image files from source!" | ||
commit_user_name: "FriendsOfREDAXO-T" | ||
commit_user_email: "[email protected]" | ||
commit_author: "FriendsOfREDAXO-T <[email protected]>" | ||
file_pattern: "images/**/*" |
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 |
---|---|---|
@@ -0,0 +1,127 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- "images/**/*" | ||
# add workflow dispatch to manually publish the current images | ||
workflow_dispatch: | ||
pull_request: | ||
paths: | ||
- "images/**/*" | ||
|
||
concurrency: | ||
# Cancel in-progress jobs if a new job is trigged by a commit from the same branch | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
REGISTRY_IMAGE: friendsofredaxo/redaxo | ||
|
||
jobs: | ||
collect: | ||
name: Collect images from directories | ||
runs-on: ubuntu-latest | ||
outputs: | ||
IMAGES: ${{ steps.images.outputs.directories }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
# https://github.com/actions/checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Collect images from directories | ||
id: images | ||
run: | | ||
cd images | ||
directories=$(tree -J -d -L 1 | jq -c '.[0].contents | map(.name)') | ||
echo $directories | ||
echo "directories=$directories" >> $GITHUB_OUTPUT | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-latest | ||
needs: [collect] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
image: ${{ fromJson(needs.collect.outputs.IMAGES) }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
# https://github.com/marketplace/actions/checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Create tag list for image | ||
# We make use of yp (https://mikefarah.gitbook.io/yq/) to create a taglist from | ||
# the image’s `tags.yml` file, where all given tags (like `5-stable`, `5-edge`) are | ||
# combined with all image registries (like ghcr, Docker Hub). | ||
run: | | ||
taglist=$(yq 'map( | ||
( | ||
"friendsofredaxo/redaxo", | ||
"ghcr.io/friendsofredaxo/redaxo" | ||
) | ||
+ ":" + .[]) | to_csv' ./images/${{ matrix.image }}/tags.yml) | ||
echo "$taglist" | ||
echo "TAGLIST=$taglist" >> $GITHUB_ENV | ||
|
||
- name: Set up QEMU | ||
# https://github.com/marketplace/actions/docker-setup-qemu | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
# https://github.com/marketplace/actions/docker-setup-buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
# https://github.com/marketplace/actions/docker-login | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
# https://github.com/marketplace/actions/docker-login | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
# https://github.com/marketplace/actions/build-and-push-docker-images | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./images/${{ matrix.image }} | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
provenance: false | ||
tags: ${{ env.TAGLIST }} | ||
|
||
- name: Update repo description | ||
# https://github.com/marketplace/actions/docker-hub-description | ||
uses: peter-evans/dockerhub-description@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
short-description: ${{ github.event.repository.description }} | ||
enable-url-completion: true | ||
|
||
- name: Delete untagged containers from GitHub Container Registry | ||
# https://github.com/marketplace/actions/delete-untagged-ghcr | ||
uses: Chizkiyahu/delete-untagged-ghcr-action@v3 | ||
with: | ||
token: ${{ secrets.GH_PACKAGES }} | ||
untagged_only: true | ||
owner_type: org | ||
except_untagged_multiplatform: true |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "images/**/*" | ||
|
||
concurrency: | ||
# Cancel in-progress jobs if a new job is trigged by a commit from the same branch | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
collect: | ||
name: Collect images from directories | ||
runs-on: ubuntu-latest | ||
outputs: | ||
IMAGES: ${{ steps.images.outputs.directories }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
# https://github.com/marketplace/actions/checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Collect images from directories | ||
id: images | ||
run: | | ||
cd images | ||
directories=$(tree -J -d -L 1 | jq -c '.[0].contents | map(.name)') | ||
echo $directories | ||
echo "directories=$directories" >> $GITHUB_OUTPUT | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
needs: [collect] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
image: ${{ fromJson(needs.collect.outputs.IMAGES) }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Build and push | ||
# https://github.com/marketplace/actions/build-and-push-docker-images | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./images/${{ matrix.image }} | ||
load: true | ||
tags: ${{ matrix.image }} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"deno.enable": true, | ||
"deno.unstable": true, | ||
"deno.importMap": "deno.json" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Dokumentation für Entwickelnde | ||
|
||
TODO |
Oops, something went wrong.