Skip to content

Commit

Permalink
feat(ci): Deploy to GH package registry
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Dec 11, 2020
1 parent 525c6fe commit f9643bd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy

on:
push:
tags:
- '*'

jobs:
deploy:

runs-on: ubuntu-20.04

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Push to GitHub Packages
uses: docker/build-push-action@v1
with:
username: ${{ github.actor }}
password: ${{ github.token }}
registry: docker.pkg.github.com
repository: theleagueof/fontship/fontship
tag_with_ref: true

0 comments on commit f9643bd

Please sign in to comment.