mirror of
https://github.com/soup-bowl/opensimulator-docker.git
synced 2026-07-30 11:33:45 +00:00
Added beta Alpine build.
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
name: Build Beta Container
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "beta/**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Codebase
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Login to ghcr.io
|
||||
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u soup-bowl --password-stdin
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Build Container
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
context: "{{defaultContext}}:build/main"
|
||||
tags: ghcr.io/soup-bowl/opensimulator-docker:alpine-beta
|
||||
platforms: linux/amd64
|
||||
@@ -1,11 +1,11 @@
|
||||
name: Build Container
|
||||
name: Build Main Container
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "opensim/**"
|
||||
- "build/**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@@ -35,6 +35,10 @@ jobs:
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
context: "{{defaultContext}}:opensim"
|
||||
tags: soupbowl/opensimulator:edge,ghcr.io/soup-bowl/opensimulator-docker:edge
|
||||
context: "{{defaultContext}}:build/main"
|
||||
tags: >
|
||||
soupbowl/opensimulator:latest,
|
||||
soupbowl/opensimulator:edge,
|
||||
ghcr.io/soup-bowl/opensimulator-docker:latest,
|
||||
ghcr.io/soup-bowl/opensimulator-docker:edge
|
||||
platforms: linux/amd64,linux/arm64
|
||||
Reference in New Issue
Block a user