mirror of https://github.com/dirtbags/moth.git
21 lines
514 B
YAML
21 lines
514 B
YAML
|
name: Publish Container image
|
||
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
name: Publish Container Image
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Retrieve code
|
||
|
uses: actions/checkout@v1
|
||
|
- name: Push to GitHub Packages
|
||
|
uses: docker/build-push-action@v1
|
||
|
with:
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
registry: docker.pkg.github.com
|
||
|
repository: dirtbags/moth/moth
|
||
|
tag_with_ref: true
|