mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-11 02:36:15 -05:00
68 lines
2.1 KiB
YAML
68 lines
2.1 KiB
YAML
# vim: ts=2 sw=2:
|
|
|
|
name: Docker Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
# Publish `master` as Docker `dev` image.
|
|
branches:
|
|
- master
|
|
# Publish `v*` tags as x.x.x images and as `latest`.
|
|
tags:
|
|
- v*
|
|
|
|
env:
|
|
IMAGE_NAME: qrm2
|
|
|
|
jobs:
|
|
docker:
|
|
name: Build and push docker images
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
|
|
- name: Write ref to file
|
|
run: git rev-list -n 1 $GITHUB_REF > ./git_commit
|
|
|
|
- name: Build image
|
|
run: docker build . --file Dockerfile -t $IMAGE_NAME
|
|
|
|
- name: Log into Github Package Registry
|
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
|
|
|
- name: Tag image
|
|
id: tag_image
|
|
run: |
|
|
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
|
|
echo IMAGE_ID=$IMAGE_ID
|
|
echo ::set-output name=image_id::$IMAGE_ID
|
|
|
|
# Strip git ref prefix from version
|
|
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
|
|
# Strip "v" prefix from tag name
|
|
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
|
|
# if version is master, set version to dev
|
|
[[ "$VERSION" == "master" ]] && VERSION=dev
|
|
echo VERSION=$VERSION
|
|
echo ::set-output name=version::$VERSION
|
|
|
|
# tag dev or x.x.x
|
|
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
|
|
# tag latest if not a dev release
|
|
[[ "$VERSION" != "dev" ]] && docker tag $IMAGE_NAME $IMAGE_ID:latest || true
|
|
|
|
- name: Push images to registry
|
|
run: docker push ${{ steps.tag_image.outputs.image_id }}
|
|
|
|
- name: Deploy official images
|
|
id: deploy_images
|
|
uses: satak/webrequest-action@v1
|
|
with:
|
|
url: ${{ secrets.DEPLOY_URL }}
|
|
method: POST
|
|
headers: '{"Authentication": "Token ${{ secrets.DEPLOY_TOKEN }}"}'
|
|
payload: '{"version": "${{ steps.tag_image.outputs.version }}"}'
|