Compare commits

..

10 Commits

Author SHA1 Message Date
Lee
6e71267e6a Merge pull request 'Updating build workflow' (#6) from development into master
All checks were successful
Publish Docker Image / docker (push) Successful in 24s
Reviewed-on: #6
2023-07-08 00:23:50 +00:00
5dbfd02153 branch name fix?
All checks were successful
Publish Docker Image / docker (push) Successful in 24s
2023-07-08 01:20:14 +01:00
072779d19a move workflows to one file
Some checks failed
Publish Docker Image / docker (push) Failing after 16s
2023-07-08 01:11:54 +01:00
1d65c92976 rename step
All checks were successful
Publish Docker Image (Development) / docker (push) Successful in 22s
2023-07-08 01:08:41 +01:00
06be77cb48 more tests
All checks were successful
Publish Docker Image (Development) / docker (push) Successful in 40s
2023-07-08 01:07:43 +01:00
b2c59d1c04 more cache tests
All checks were successful
/ docker (push) Successful in 32s
2023-07-08 01:05:18 +01:00
76e6e045b9 john made this, i don't expect it to work
All checks were successful
/ docker (push) Successful in 42s
2023-07-08 01:03:38 +01:00
e2b2d0694b test cache
All checks were successful
/ docker (push) Successful in 28s
2023-07-08 01:02:19 +01:00
59e116c19d fix key?
All checks were successful
/ docker (push) Successful in 33s
2023-07-08 01:01:21 +01:00
fab61be362 cache docker in build step
Some checks failed
/ docker (push) Failing after 20s
2023-07-08 01:00:12 +01:00

@ -1,34 +1,71 @@
Actions name: Publish Docker Image name: Publish Docker Image
on: on:
push: push:
branches: branches:
- "master" - "master"
- "development"
paths-ignore: # Files in here will not trigger a build
- "README.md"
- "sharex.sxcu"
- "LICENSE"
- "docker-compose.yml"
jobs: jobs:
docker: docker:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Get branch name
uses: https://github.com/actions/checkout@v3 id: branch-name
uses: tj-actions/branch-names@v7
- name: Download Docker - name: Checkout
uses: actions/checkout@v3
- name: Restore Docker Cache
uses: actions/cache@v3
id: docker-cache
with:
path: /usr/bin/docker
key: ${{ runner.os }}-docker
- name: Install Docker (if not cached)
if: steps.docker-cache.outputs.cache-hit != 'true'
run: | run: |
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \ wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \ && tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/* && rm -rf /tmp/* &&
echo "Done"
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
- name: Login to Repo - name: Login to Repo
uses: https://github.com/docker/login-action@v2 uses: docker/login-action@v2
with: with:
username: ${{ secrets.REPO_USERNAME }} username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }} password: ${{ secrets.REPO_TOKEN }}
- name: Restore Docker Build Cache
uses: actions/cache@v3
id: build-cache
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx
- name: Build and Push - name: Build and Push
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
with: with:
push: true push: true
context: . context: .
tags: fascinated/sharex-php-uploader:latest tags: fascinated/sharex-php-uploader:${{ steps.branch-name.outputs.current_branch }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Save Docker Build Cache
if: steps.build-cache.outputs.cache-hit != 'true'
run: |
mkdir -p /tmp/.buildx-cache
cp -r /tmp/.buildx-cache/. /tmp/.buildx-cache-new
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache