-
Notifications
You must be signed in to change notification settings - Fork 3
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 #33 from soubinan/dev
New Improvements
- Loading branch information
Showing
8 changed files
with
4,064 additions
and
3 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
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,48 @@ | ||
name: Build Jenkins LXC Image | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- closed | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/build-jenkins.yml' | ||
- 'templates/jenkins.yml' | ||
schedule: | ||
- cron: '0 3 */1 * *' | ||
|
||
jobs: | ||
init: | ||
if: github.event.action != 'closed' || (github.event.action == 'closed' && github.event.pull_request.merged) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Application version | ||
id: get-app-version | ||
run: | | ||
echo "APP_VERSION=$(curl -Ls https://updates.jenkins.io/stable/latestCore.txt | sed -E 's/^v|V//')" >> $GITHUB_OUTPUT | ||
outputs: | ||
app_version: ${{steps.get-app-version.outputs.APP_VERSION}} | ||
|
||
image-build: | ||
needs: init | ||
strategy: | ||
matrix: | ||
architectures: | ||
- amd64 | ||
uses: ./.github/workflows/builder.yml | ||
with: | ||
config_path: templates/jenkins.yml | ||
app_name: jenkins | ||
app_version: ${{needs.init.outputs.app_version}} | ||
description: The leading open source automation server. Build great things at any scale. | ||
categories: Automation, CI CD, Dev | ||
project_source: https://github.com/jenkinsci/jenkins | ||
distribution: debian | ||
release: bookworm | ||
architecture: ${{matrix.architectures}} | ||
branch_name: ${{github.event.pull_request.base.ref}} | ||
is_merged: ${{github.event.pull_request.merged || github.event_name == 'schedule'}} | ||
secrets: inherit |
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,48 @@ | ||
name: Build Keycloak LXC Image | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- closed | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/build-keycloak.yml' | ||
- 'templates/keycloak.yml' | ||
schedule: | ||
- cron: '0 3 */1 * *' | ||
|
||
jobs: | ||
init: | ||
if: github.event.action != 'closed' || (github.event.action == 'closed' && github.event.pull_request.merged) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Application version | ||
id: get-app-version | ||
run: | | ||
echo "APP_VERSION=$(curl -Ls https://api.github.com/repos/keycloak/keycloak/releases/latest | jq -r '.tag_name' | sed -E 's/^v|V//')" >> $GITHUB_OUTPUT | ||
outputs: | ||
app_version: ${{steps.get-app-version.outputs.APP_VERSION}} | ||
|
||
image-build: | ||
needs: init | ||
strategy: | ||
matrix: | ||
architectures: | ||
- amd64 | ||
uses: ./.github/workflows/builder.yml | ||
with: | ||
config_path: templates/keycloak.yml | ||
app_name: keycloak | ||
app_version: ${{needs.init.outputs.app_version}} | ||
description: Open Source Identity and Access Management. | ||
categories: Identity, IAM, IDP, Security | ||
project_source: https://github.com/keycloak/keycloak | ||
distribution: debian | ||
release: bookworm | ||
architecture: ${{matrix.architectures}} | ||
branch_name: ${{github.event.pull_request.base.ref}} | ||
is_merged: ${{github.event.pull_request.merged || github.event_name == 'schedule'}} | ||
secrets: inherit |
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,48 @@ | ||
name: Build Matomo LXC Image | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- closed | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/build-matomo.yml' | ||
- 'templates/matomo.yml' | ||
schedule: | ||
- cron: '0 3 */1 * *' | ||
|
||
jobs: | ||
init: | ||
if: github.event.action != 'closed' || (github.event.action == 'closed' && github.event.pull_request.merged) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get Application version | ||
id: get-app-version | ||
run: | | ||
echo "APP_VERSION=$(curl -s https://api.github.com/repos/matomo-org/matomo/releases/latest | jq -r '.tag_name' | sed -E 's/^v|V|.+@//')" >> $GITHUB_OUTPUT | ||
outputs: | ||
app_version: ${{steps.get-app-version.outputs.APP_VERSION}} | ||
|
||
image-build: | ||
needs: init | ||
strategy: | ||
matrix: | ||
architectures: | ||
- amd64 | ||
uses: ./.github/workflows/builder.yml | ||
with: | ||
config_path: templates/matomo.yml | ||
app_name: matomo | ||
app_version: ${{needs.init.outputs.app_version}} | ||
description: Google Analytics alternative that protects your data and your customers' privacy. | ||
categories: Analytics, SEO, Tracking | ||
project_source: https://github.com/matomo-org/matomo | ||
distribution: debian | ||
release: bookworm | ||
architecture: ${{matrix.architectures}} | ||
branch_name: ${{github.event.pull_request.base.ref}} | ||
is_merged: ${{github.event.pull_request.merged || github.event_name == 'schedule'}} | ||
secrets: inherit |
Oops, something went wrong.