Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Add deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed May 16, 2021
1 parent 0deaabc commit 22eb379
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish-image-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Docker Image
on:
push:
branches: [master]
jobs:
push_to_registry:
name: Push docker image to github
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
with:
submodules: true
- name: Push oengusdotdev to GitHub Packages
uses: docker/build-push-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com
repository: duncte123/nuxt-docker/nuxt-docker
tags: latest

0 comments on commit 22eb379

Please sign in to comment.