-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
26d6356
commit 93595ea
Showing
2 changed files
with
15 additions
and
51 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 |
---|---|---|
|
@@ -16,54 +16,43 @@ permissions: | |
|
||
jobs: | ||
golang_quality: | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].11 | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].12 | ||
|
||
golang_test: | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].11 | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].12 | ||
needs: [build_openapi_spec] # Validates agains OpenAPI spec | ||
with: | ||
services: '{"database": {"image": "mysql:9.0", "ports": ["3306:3306"], "env": {"MYSQL_ROOT_PASSWORD": "mypass", "MYSQL_DATABASE": "remindme"}}}' | ||
env: '{"TEST_DB_HOST": "database"}' | ||
|
||
build_openapi_spec: | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].11 | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].12 | ||
with: | ||
entrypoint: cmd/remindme/main.go | ||
|
||
render_openapi_spec: | ||
needs: [build_openapi_spec] | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].11 | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].12 | ||
with: | ||
spec_artifact_name: openapi-spec | ||
spec_artifact_path: docs/ | ||
spec_filename: swagger.yaml | ||
|
||
deploy_openapi_spec: | ||
needs: [render_openapi_spec] | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].11 | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected].12 | ||
with: | ||
artifact_name: rendered-api-docu | ||
artifact_path: index.html | ||
|
||
build_and_push_image: | ||
build_image: | ||
needs: [golang_test, golang_quality, render_openapi_spec] | ||
runs-on: ubuntu-latest | ||
if: "!startsWith(github.ref, 'refs/tags/')" | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
- name: Build container | ||
run: docker build --build-arg VERSION=${{ github.sha }} -t cubicrootxyz/remindme:beta . | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Push development image | ||
if: "${{ github.ref != 'refs/heads/main' }}" | ||
run: | | ||
docker tag cubicrootxyz/remindme:beta cubicrootxyz/remindme:${{ github.sha }} | ||
docker push cubicrootxyz/remindme:${{ github.sha }} | ||
- name: Push beta image | ||
if: "${{ github.ref == 'refs/heads/main' }}" | ||
run: docker push cubicrootxyz/remindme:beta | ||
uses: CubicrootXYZ/Workflows/.github/workflows/[email protected] | ||
with: | ||
docker_build_args: "--no-cache" | ||
docker_file_path: "./" | ||
image_name: "cubicrootxyz/remindme" | ||
static_tag: "beta" | ||
secrets: | ||
dockerhub_user: ${{ secrets.DOCKERHUB_USERNAME }} | ||
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.