mirror of
https://github.com/ravenscroftj/turbopilot.git
synced 2024-10-01 01:06:01 -04:00
30 lines
794 B
YAML
30 lines
794 B
YAML
name: Docker Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.7.0
|
|
with:
|
|
submodules: true
|
|
|
|
|
|
- name: Publish Docker Image to GitHub Registry
|
|
# You may pin to the exact commit or the version.
|
|
# uses: TilBlechschmidt/gp-docker-action@f89287d44556dd7d24f76c799cd0795eeb352bcf
|
|
uses: TilBlechschmidt/gp-docker-action@v0.2-alpha
|
|
with:
|
|
# GitHub token to push Docker image to GitHub Packages
|
|
github-token: ${{ secrets.GH_TOKEN }}
|
|
# Docker Image name
|
|
image-name: turbopilot
|
|
# Path to the directory where the Dockerfile resides
|
|
dockerfile-path: . # optional, default is .
|
|
image-tag: ${{ github.tag }} |