Skip to content

Commit

Permalink
Remove API Container creation in Github Actions for Version Tag
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAxelander committed Jan 4, 2025
1 parent 5d5bb01 commit ee83f98
Showing 1 changed file with 1 addition and 30 deletions.
31 changes: 1 addition & 30 deletions .github/workflows/docker-image-version-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,35 +59,6 @@ jobs:
name: Build and Push Docker Image (App)
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:pre-release
platforms: linux/arm64,linux/amd64

deploy-docker-api:
runs-on: ubuntu-latest
name: Build and Push Docker Image (API)
needs: test
if: success()
steps:
- name: Check out repo
uses: actions/checkout@v3
Expand All @@ -110,4 +81,4 @@ jobs:
context: .
push: true
tags: axelander/openbudgeteer:${{ github.ref_name }}
platforms: linux/arm64,linux/amd64
platforms: linux/arm64,linux/amd64

0 comments on commit ee83f98

Please sign in to comment.