mirror of
https://github.com/alerta/alerta-webui.git
synced 2025-03-18 06:12:51 +00:00

* Docker image versioning and image name * Add version Co-authored-by: Cisco Osterman <cisco.osterman@tre.se>
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
name: docker-build-push
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, release/* ]
|
|
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
REPOSITORY_URL: docker.pkg.github.com
|
|
IMAGE_NAME: ${{ github.repository }}/alerta-webui
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: npm version
|
|
- name: Variables
|
|
id: vars
|
|
run: echo "::set-output name=SHORT_COMMIT_ID::$(git rev-parse --short HEAD)"
|
|
- name: Build image
|
|
id: docker-build
|
|
run: >-
|
|
docker build
|
|
-t $IMAGE_NAME
|
|
-t $REPOSITORY_URL/$IMAGE_NAME:$(cat VERSION)
|
|
-t $REPOSITORY_URL/$IMAGE_NAME:${{ steps.vars.outputs.SHORT_COMMIT_ID }}
|
|
-t $REPOSITORY_URL/$IMAGE_NAME:latest .
|
|
- uses: docker/login-action@v1
|
|
with:
|
|
registry: ${{ env.REPOSITORY_URL }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Publish Image
|
|
id: docker-push
|
|
run: docker push --all-tags $REPOSITORY_URL/$IMAGE_NAME
|
|
|
|
- uses: act10ns/slack@v1
|
|
with:
|
|
status: ${{ job.status }}
|
|
steps: ${{ toJson(steps) }}
|
|
if: failure()
|