build with experimental tag

This commit is contained in:
GroovieGermanikus 2023-09-06 19:41:19 +02:00
parent 08dd773dfc
commit d095dc5050
1 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@ name: Publish Docker Image
on:
push:
branches: [main]
branches: [main, experimental-github-actions]
env:
IMAGE: mango-feeds
@ -37,10 +37,12 @@ jobs:
# Build and push the image
- name: Build and Push Image
uses: docker/build-push-action@v2
run: |
source ci/rust-version.sh
with:
context: .
build-args: |
RUST_TOOLCHAIN_VERSION=1.71.1
RUST_TOOLCHAIN_VERSION=${{ env.RUST_STABLE }}
push: true
tags: |
${{ env.REGISTRY }}/${{ env.ORG }}/${{ env.IMAGE }}:${{ github.sha }}