Skip to content

Commit

Permalink
Update Dockerfile for beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydrogers committed Nov 9, 2023
1 parent 1b23120 commit 7f8ce3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/publish_docker-images-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ jobs:
uses: ./.github/workflows/service_docker-build-and-publish.yml
with:
docker-tags: "serversideup/financial-freedom:beta"
dockerfile: "Dockerfile.php"
secrets: inherit
6 changes: 5 additions & 1 deletion .github/workflows/service_docker-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@ on:
docker-tags:
required: true
type: string
dockerfile:
type: string
default: 'Dockerfile'

jobs:
docker-publish:
runs-on: ubuntu-22.04
steps:
- name: docker-build-action
uses: serversideup/github-action-docker-build@v1
uses: serversideup/github-action-docker-build@main
with:
tags: "${{ inputs.docker-tags }}"
dockerfile: "${{ inputs.dockerfile }}"
registry-username: ${{ secrets.DOCKER_HUB_USERNAME }}
registry-token: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
platforms: "${{ inputs.platforms }}"

0 comments on commit 7f8ce3c

Please sign in to comment.