Compare commits

..

3 Commits

Author SHA1 Message Date
Lee
b9cbfef9be Merge pull request 'fix workflow file' (#7) from development into master
All checks were successful
Publish Docker Image / docker (push) Successful in 24s
Reviewed-on: #7
2023-07-08 00:36:07 +00:00
49727e46c9 a dumb fix - might work
All checks were successful
Publish Docker Image / docker (push) Successful in 25s
2023-07-08 01:35:23 +01:00
b141ce2045 might work, might not - fix image tag
Some checks failed
Publish Docker Image / docker (push) Failing after 17s
2023-07-08 01:30:27 +01:00

@ -53,8 +53,19 @@ jobs:
path: /tmp/.buildx-cache path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx key: ${{ runner.os }}-buildx
- name: Build and Push - name: Build and Push (Latest)
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
if: steps.branch-name.outputs.current_branch == 'master'
with:
push: true
context: .
tags: fascinated/sharex-php-uploader:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Build and Push (Other Branches)
uses: docker/build-push-action@v4
if: steps.branch-name.outputs.current_branch != 'master'
with: with:
push: true push: true
context: . context: .