-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Github Actions for Version Tag Docker Build
- Loading branch information
1 parent
1e7f079
commit 801a204
Showing
1 changed file
with
59 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,59 @@ | ||
name: Docker Image (Version Tag) | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
env: | ||
DOTNET_VERSION: '8.0.100' # The .NET SDK version to use | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: Run Test Cases | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
|
||
- name: Install Blazor dependencies | ||
run: dotnet restore OpenBudgeteer.Blazor | ||
|
||
- name: Build Blazor | ||
run: dotnet build OpenBudgeteer.Blazor --configuration Release --no-restore | ||
|
||
- name: Run Core Test Cases | ||
run: dotnet test OpenBudgeteer.Core.Test | ||
deploy-docker: | ||
runs-on: ubuntu-latest | ||
name: Build and Push Docker Image | ||
needs: test | ||
if: success() | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Docker Login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: axelander/openbudgeteer:${{ github.ref_name }}" | ||
platforms: linux/arm64,linux/amd64 |