feat: initial commit

This commit is contained in:
2023-12-09 23:02:36 +01:00
parent aa2ed4e24e
commit 15d2f0739c
2 changed files with 46 additions and 1 deletions

43
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,43 @@
name: Publish to Docker Hub
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Get latest version
run: |
curl -s https://api.github.com/repos/pocketbase/pocketbase/releases/latest \
| grep "tag_name" \
| awk '{print $2}' \
| tr -d '"' \
| tr -d ',' \
| tr -d 'v' \
| tr -d ' ' \
>> $VERSION
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
sernhandler/pocketbase:latest
sernhandler/pocketbase:$VERSION
build-args: |
VERSION=$VERSION