-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
13 changed files
with
1,485 additions
and
0 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,5 @@ | ||
exclude: | ||
- main | ||
- stable | ||
- develop | ||
delete_closed_pr: 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,30 @@ | ||
name: Docker push develop to latest | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to DockerHub | ||
if: github.event_name != 'pull_request' | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Convert Username | ||
id: un | ||
run: echo "un=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ steps.un.outputs.un }} | ||
password: ${{ github.token }} | ||
- name: Push develop to latest | ||
run: | | ||
docker buildx imagetools create --tag ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:latest ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
docker buildx imagetools create --tag ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:latest ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
- name: Show Nginx version | ||
run: | | ||
docker run --rm ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:latest -V | ||
docker run --rm ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:latest -V |
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,115 @@ | ||
name: Build Docker Image | ||
on: | ||
schedule: | ||
- cron: "0 0 */6 * *" | ||
push: | ||
branches: | ||
- latest | ||
- develop | ||
paths: | ||
- Dockerfile | ||
- .github/workflows/docker.yml | ||
pull_request: | ||
paths: | ||
- Dockerfile | ||
- .github/workflows/docker.yml | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
with: | ||
platforms: arm64 #all | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
driver-opts: env.BUILDKIT_STEP_LOG_MAX_SIZE=-1 | ||
- name: Login to DockerHub | ||
if: ${{ github.event_name != 'pull_request' }} | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Convert Username | ||
id: un | ||
run: echo "un=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ steps.un.outputs.un }} | ||
password: ${{ github.token }} | ||
- name: Build | ||
uses: docker/build-push-action@v4 | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
platforms: linux/amd64,linux/arm64 #,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4 #,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6 | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: | | ||
${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.run_number }} | ||
ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.run_number }} | ||
build-args: | | ||
"BUILD=${{ github.event.repository.name }}" | ||
- name: show version | ||
if: ${{ github.event_name != 'pull_request' }} | ||
run: | | ||
docker run --rm ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} -V | ||
docker run --rm ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.run_number }} -V | ||
docker run --rm ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} -V | ||
docker run --rm ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.run_number }} -V | ||
- name: copy nginx binary | ||
if: ${{ github.event_name != 'pull_request' }} | ||
run: | | ||
docker run -d --pull always --platform amd64 --name nginx-x86_64 ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
docker cp nginx-x86_64:/usr/local/nginx/sbin/nginx nginx-x86_64 | ||
docker run -d --pull always --platform arm64 --name nginx-aarch64 ${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ github.ref_name }} | ||
docker cp nginx-aarch64:/usr/local/nginx/sbin/nginx nginx-aarch64 | ||
- uses: actions/upload-artifact@v3 | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
name: artifacts | ||
path: | | ||
nginx-x86_64 | ||
nginx-aarch64 | ||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
prerelease: false | ||
repo_token: ${{ github.token }} | ||
title: ${{ github.run_number }} | ||
automatic_release_tag: ${{ github.run_number }} | ||
files: | | ||
nginx-x86_64 | ||
nginx-aarch64 | ||
- name: Set PR-Number (PR) | ||
if: ${{ github.event_name == 'pull_request' }} | ||
id: pr | ||
run: echo "pr=$(echo pr-${{ github.ref_name }} | sed "s|refs/pull/:||g" | sed "s|/merge||g")" >> $GITHUB_OUTPUT | ||
- name: Build (PR) | ||
uses: docker/build-push-action@v4 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
platforms: linux/amd64,linux/arm64 #,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4 #,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6 | ||
push: ${{ github.event_name == 'pull_request' }} | ||
tags: ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ steps.pr.outputs.pr }} | ||
build-args: | | ||
"BUILD=${{ github.event.repository.name }}" | ||
- name: show version (PR) | ||
if: ${{ github.event_name == 'pull_request' }} | ||
run: docker run --rm ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ steps.pr.outputs.pr }} -V | ||
- name: add comment (PR) | ||
uses: mshick/add-pr-comment@v2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
message: "The Docker Image can now be found here: `ghcr.io/${{ steps.un.outputs.un }}/${{ github.event.repository.name }}:${{ steps.pr.outputs.pr }}`" | ||
repo-token: ${{ github.token }} |
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,14 @@ | ||
name: JSON check | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
test-json: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: json-syntax-check | ||
uses: limitusus/json-syntax-check@v2 | ||
with: | ||
pattern: "\\.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: reviewdog | ||
on: [pull_request] | ||
jobs: | ||
misspell: | ||
name: runner / misspell | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code. | ||
uses: actions/checkout@v3 | ||
- name: misspell | ||
uses: reviewdog/action-misspell@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
locale: "US" |
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,20 @@ | ||
name: yq | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
yq: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.YQ }} | ||
- name: update workflows | ||
run: for workflow in .github/workflows/*.yml; do yq "$workflow" | tee "$workflow".tmp && mv "$workflow".tmp "$workflow"; done | ||
- name: push changes | ||
run: | | ||
git config user.name "GitHub" | ||
git config user.email "[email protected]" | ||
git add -A | ||
git diff-index --quiet HEAD || git commit -sm "yq" | ||
git push |
Oops, something went wrong.