mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
33 lines
994 B
YAML
33 lines
994 B
YAML
name: publish beta image docker
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'beta'
|
|
jobs:
|
|
build:
|
|
if: github.repository_owner == 'vabene1111'
|
|
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 }}
|
|
- name: Discord notification
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_BETA_WEBHOOK }}
|
|
uses: Ilshidur/action-discord@0.3.2
|
|
with:
|
|
args: 'The BETA Image has been updated!' |