Archived
1
0
Fork 0
This repository has been archived on 2024-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
weewx-docker/.forgejo/workflows/build-image.yml

27 lines
729 B
YAML
Raw Normal View History

name: Build Image
on:
push:
branches: ['master']
jobs:
build-and-push-image:
runs-on: ubuntu-latest-amd64
steps:
2023-12-09 20:58:12 +00:00
- uses: actions/checkout@v4
- name: Install Buildah
run: apt-get -y update && apt-get -y install buildah
2023-12-09 20:58:12 +00:00
- name: Build Container
run: |
export BUILDAH_ISOLATION=chroot
buildah --storage-driver=vfs bud -f -t git.kempkens.io/daniel/weewx:latest ./Dockerfile .
- name: Publish Container
run: |
echo "{\"auths\": {\"git.kempkens.io\": {\"auth\": \"${{ secrets.PACKAGES_AUTH_STR }}\"}}}" > $PWD/auth.json
buildah push --authfile $PWD/auth.json git.kempkens.io/daniel/weewx:latest
rm -f $PWD/auth.json