Skip to content

Commit

Permalink
add job fs
Browse files Browse the repository at this point in the history
  • Loading branch information
sssomeshhh committed May 27, 2024
1 parent 806ccdd commit b265d95
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,37 @@ jobs:
sssomeshhh/rentify:be-${{ github.sha }}
build-args:
XE=fe

fs:
runs-on: ubuntu-22.04
needs:
- be
- fe
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/[email protected]
with:
registry: docker.io
username: sssomeshhh
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Setup Docker Buildx
id: setup_buildx
uses: docker/[email protected]
- name: Build Target
uses: docker/[email protected]
with:
builder: ${{ steps.setup_buildx.name }}
context: .
file: Dockerfile
target: fs
cache-from: |
type=registry,ref=sssomeshhh/cache:rentify-fs
cache-to: |
type=registry,ref=sssomeshhh/cache:rentify-fs
load: false
push: true
tags: |
sssomeshhh/rentify:fs
sssomeshhh/rentify:fs-${{ github.sha }}

0 comments on commit b265d95

Please sign in to comment.