adding binary and build

This commit is contained in:
2022-08-11 08:06:50 -04:00
parent 30a15f714d
commit 84d8126a66
11 changed files with 63 additions and 2 deletions

View File

@@ -50,4 +50,7 @@ jobs:
tags: ghcr.io/sstent/dante:latest
build-args: |
RELEASE=v0.3.5
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -37,4 +37,7 @@ jobs:
push: true
file: fitbit-collect/Dockerfile
tags: ghcr.io/sstent/fitbit-collect:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -36,5 +36,6 @@ jobs:
platforms: linux/arm/v7, Linux/amd64, linux/arm64/v8
push: true
tags: ghcr.io/sstent/garminexport:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -36,4 +36,6 @@ jobs:
platforms: linux/arm/v7
push: true
tags: ghcr.io/sstent/gitea:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -37,4 +37,6 @@ jobs:
push: true
file: github-backup/Dockerfile
tags: ghcr.io/sstent/github-backup:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -36,4 +36,6 @@ jobs:
platforms: linux/arm/v7, Linux/amd64, linux/arm64/v8
push: true
tags: ghcr.io/sstent/gitolite:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -37,4 +37,6 @@ jobs:
push: true
file: lufi/Dockerfile
tags: ghcr.io/sstent/lufi:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -36,4 +36,6 @@ jobs:
platforms: linux/arm/v7
push: true
tags: ghcr.io/sstent/portfwd:latest
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@@ -38,4 +38,6 @@ jobs:
tags: ghcr.io/sstent/rsync:latest
build-args: |
RELEASE=v0.3.9
cache-from: type=gha
cache-to: type=gha,mode=max

42
.github/workflows/seaweedfs.yml vendored Normal file
View File

@@ -0,0 +1,42 @@
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- 'seaweedfs/*'
- '.github/workflows/seaweedfs.yml'
pull_request:
branches: [ master ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Log into registry
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: gitea/
platforms: linux/arm/v7, linux/arm64/v8
push: true
tags: ghcr.io/sstent/seaweedfs:latest
cache-from: type=gha
cache-to: type=gha,mode=max

0
seaweedfs/Dockerfile Normal file
View File