-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
154 additions
and
153 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 |
---|---|---|
@@ -1,72 +1,72 @@ | ||
name: Build and Publish dev docker image | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
env: | ||
REGISTRY_IMAGE: ghcr.io/calaos/calaos_home | ||
NAME: calaos_home | ||
IMG_TAG: dev | ||
|
||
jobs: | ||
# define job to build and publish docker image | ||
build-and-push-docker-image: | ||
name: Build Docker image and push to repositories | ||
# run only when code is compiling and tests are passing | ||
runs-on: ubuntu-latest | ||
|
||
# steps to perform in job | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Calaos Action Bump Version | ||
id: calaos_version | ||
uses: calaos/action-bump-version@1.2.2 | ||
with: | ||
version_fragment: 'prerelease' | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY_IMAGE }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to Github Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push by digest | ||
id: build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: "{{defaultContext}}:docker" | ||
push: true | ||
build-args: APP_VERSION=${{ steps.calaos_version.outputs.version_bumped }} | ||
tags: | | ||
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }} | ||
${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }} | ||
- name: Create Tag | ||
uses: negz/create-tag@v1 | ||
with: | ||
version: ${{ steps.calaos_version.outputs.version_bumped }} | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
|
||
- name: Build deb | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
repository: calaos/pkgdebs | ||
event-type: build_deb | ||
client-payload: '{ "pkgname": "calaos-home", "version": "${{ steps.calaos_version.outputs.version_bumped }}", "image_src": "${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}", "prerelease": true }' | ||
name: Build and Publish dev docker image | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
env: | ||
REGISTRY_IMAGE: ghcr.io/calaos/calaos_home | ||
NAME: calaos_home | ||
IMG_TAG: dev | ||
|
||
jobs: | ||
# define job to build and publish docker image | ||
build-and-push-docker-image: | ||
name: Build Docker image and push to repositories | ||
# run only when code is compiling and tests are passing | ||
runs-on: ubuntu-latest | ||
|
||
# steps to perform in job | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Calaos Action Bump Version | ||
id: calaos_version | ||
uses: calaos/action-bump-version@2 | ||
with: | ||
version_fragment: 'prerelease' | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY_IMAGE }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to Github Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push by digest | ||
id: build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: "{{defaultContext}}:docker" | ||
push: true | ||
build-args: APP_VERSION=${{ steps.calaos_version.outputs.version_bumped }} | ||
tags: | | ||
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }} | ||
${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }} | ||
- name: Create Tag | ||
uses: negz/create-tag@v1 | ||
with: | ||
version: ${{ steps.calaos_version.outputs.version_bumped }} | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
|
||
- name: Build deb | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
repository: calaos/pkgdebs | ||
event-type: build_deb | ||
client-payload: '{ "pkgname": "calaos-home", "version": "${{ steps.calaos_version.outputs.version_bumped }}", "image_src": "${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}", "prerelease": 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 |
---|---|---|
@@ -1,81 +1,82 @@ | ||
name: Build and Publish release docker image | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
vincrement: | ||
description: 'Package version increment (major.feature.bug)' | ||
required: true | ||
default: 'minor' | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
|
||
env: | ||
REGISTRY_IMAGE: ghcr.io/calaos/calaos_home | ||
NAME: calaos_home | ||
IMG_TAG: latest | ||
|
||
jobs: | ||
# define job to build and publish docker image | ||
build-and-push-docker-image: | ||
name: Build Docker image and push to repositories | ||
# run only when code is compiling and tests are passing | ||
runs-on: ubuntu-latest | ||
|
||
# steps to perform in job | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Calaos Action Bump Version | ||
id: calaos_version | ||
uses: calaos/[email protected] | ||
with: | ||
version_fragment: ${{ github.event.inputs.vincrement }} | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY_IMAGE }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to Github Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push by digest | ||
id: build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: "{{defaultContext}}:docker" | ||
push: true | ||
build-args: APP_VERSION=${{ steps.calaos_version.outputs.version_bumped }} | ||
tags: | | ||
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }} | ||
${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }} | ||
- name: Create Tag | ||
uses: negz/create-tag@v1 | ||
with: | ||
version: ${{ steps.calaos_version.outputs.version_bumped }} | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
|
||
- name: Build deb | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
repository: calaos/pkgdebs | ||
event-type: build_deb | ||
client-payload: '{ "pkgname": "calaos-home", "version": "${{ steps.calaos_version.outputs.version_bumped }}", "image_src": "${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}", "prerelease": false }' | ||
|
||
name: Build and Publish release docker image | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
vincrement: | ||
description: 'Package version increment (major.feature.patch)' | ||
required: true | ||
default: 'patch' | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
- patch | ||
|
||
env: | ||
REGISTRY_IMAGE: ghcr.io/calaos/calaos_home | ||
NAME: calaos_home | ||
IMG_TAG: latest | ||
|
||
jobs: | ||
# define job to build and publish docker image | ||
build-and-push-docker-image: | ||
name: Build Docker image and push to repositories | ||
# run only when code is compiling and tests are passing | ||
runs-on: ubuntu-latest | ||
|
||
# steps to perform in job | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Calaos Action Bump Version | ||
id: calaos_version | ||
uses: calaos/action-bump-version@2 | ||
with: | ||
version_fragment: ${{ github.event.inputs.vincrement }} | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY_IMAGE }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to Github Packages | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push by digest | ||
id: build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: "{{defaultContext}}:docker" | ||
push: true | ||
build-args: APP_VERSION=${{ steps.calaos_version.outputs.version_bumped }} | ||
tags: | | ||
${{ env.REGISTRY_IMAGE }}:${{ env.IMG_TAG }} | ||
${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }} | ||
- name: Create Tag | ||
uses: negz/create-tag@v1 | ||
with: | ||
version: ${{ steps.calaos_version.outputs.version_bumped }} | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
|
||
- name: Build deb | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.ACTION_DISPATCH }} | ||
repository: calaos/pkgdebs | ||
event-type: build_deb | ||
client-payload: '{ "pkgname": "calaos-home", "version": "${{ steps.calaos_version.outputs.version_bumped }}", "image_src": "${{ env.REGISTRY_IMAGE }}:${{ steps.calaos_version.outputs.version_bumped }}", "prerelease": false }' | ||
|