-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: updated docker hub build action to new octane and other minor up…
…dates
- Loading branch information
Showing
4 changed files
with
70 additions
and
113 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,53 @@ | ||
|
||
# This worklflow will perform following actions when the code is pushed to development branch: | ||
# - Build the latest docker image in development. | ||
# - Push the latest docker image to Google Artifact Registry-Dev. | ||
# - Rollout the latest image in GKE. | ||
# | ||
# Maintainers: | ||
# - name: Chandu Nainala | ||
# - email: [email protected] | ||
|
||
name : Build and Deploy to Dev | ||
|
||
on: | ||
push: | ||
branches: [development] | ||
|
||
env: | ||
PROJECT_ID: ${{ secrets.GKE_PROJECT }} | ||
REPOSITORY_NAME: coconut | ||
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
APP_IMAGE: coconut-app | ||
REPOSITORY_NAMESPACE: nfdi4chem | ||
|
||
jobs: | ||
setup-build-publish-deploy-dev: | ||
name: Build & deploy to development | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: Dev | ||
steps: | ||
# Checkout code | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
# Login to Docker | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ env.DOCKER_HUB_USERNAME }} | ||
password: ${{ env.DOCKER_HUB_PASSWORD }} | ||
|
||
# Build and push the app Docker image | ||
- name: Build and push App Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./FrankenPHP.Dockerfile | ||
push: true | ||
build-args: | | ||
RELEASE_VERSION=latest | ||
COMPOSER_AUTH=${{ secrets.COMPOSER_AUTH }} | ||
tags: ${{ env.REPOSITORY_NAMESPACE }}/${{ env.REPOSITORY_NAME }}:latest |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Accepted values: 8.3 - 8.2 | ||
ARG PHP_VERSION=8.3 | ||
|
||
ARG FRANKENPHP_VERSION=latest | ||
|
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