Skip to content

Merge pull request #338 from IUBLibTech/main_page_edits #19

Merge pull request #338 from IUBLibTech/main_page_edits

Merge pull request #338 from IUBLibTech/main_page_edits #19

name: Docker Image CI Stable Branch
on:
push:
branches: [ '**-stable' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get branch name
id: get_branch
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF:11})" >> $GITHUB_ENV
- name: Build and push stable to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: iublibtech/archives_online
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_AUTH_TOKEN }}
buildargs: SOURCE_COMMIT
tags: "stable,${{ env.BRANCH_NAME }}"
env:
SOURCE_COMMIT: ${{ github.sha }}