mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-12 18:07:12 -04:00
Add integration test
This commit is contained in:
16
.github/workflows/test_integration.yml
vendored
Normal file
16
.github/workflows/test_integration.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
name: Integration Test
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Login to Registry
|
||||
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Publish to Registry
|
||||
uses: elgohr/Publish-Docker-Github-Action@master
|
||||
with:
|
||||
args: elgohr/Publish-Docker-Github-Action
|
||||
snapshot: true
|
||||
- name: Logout
|
||||
run: docker logout
|
||||
Reference in New Issue
Block a user