Skip to content

Merge remote-tracking branch 'upstream/dev' into dev #1

Merge remote-tracking branch 'upstream/dev' into dev

Merge remote-tracking branch 'upstream/dev' into dev #1

Workflow file for this run

name: Build Release
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clone custom items
uses: actions/checkout@v4
with:
repository: Baystation12/custom-items
path: custom-items
- name: Build and Publish Image to Registry
env:
BUILD_ARGS: -Icustom-items/inc.dm
uses: elgohr/Publish-Docker-Github-Action@c20fc91411aa7d8a3961f40c27d12648d1812716
with:
name: ${{ secrets.IMAGE_NAME }}
username: ${{ secrets.REG_USER }}
password: ${{ secrets.REG_PASS }}
tags: "latest"
buildargs: BUILD_ARGS
registry: ${{ secrets.REG_URL }}
cache: true