mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-13 18:17:14 -04:00
15 lines
454 B
YAML
15 lines
454 B
YAML
name: Integration Test Github
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Publish to Registry
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
|
with:
|
|
name: docker.pkg.github.com/elgohr/publish-docker-github-action/publish-docker-github-action
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
registry: docker.pkg.github.com
|