added recipes to shopping list

This commit is contained in:
vabene1111
2021-01-28 11:20:36 +01:00
parent d2a0bb1ec1
commit 96146a388a
2 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
name: publish beta image docker
on:
push:
branches:
- 'beta'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Update version file
uses: DamianReeves/write-file-action@v1.0
with:
path: recipes/version.py
contents: |
VERSION_NUMBER = 'beta'
BUILD_REF = '${{ github.sha }}'
write-mode: overwrite
- name: Build and publish image
uses: ilteoood/docker_buildx@master
with:
publish: true
imageName: vabene1111/recipes
tag: beta
dockerHubUser: ${{ secrets.DOCKER_USERNAME }}
dockerHubPassword: ${{ secrets.DOCKER_PASSWORD }}