Files
Publish-Docker-Github-Action/.github/workflows/test_integration.yml
2022-04-09 21:46:05 +02:00

20 lines
510 B
YAML

name: Integration Test
on:
push:
branches:
- main
jobs:
integration-test-dockerhub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish to Registry
if: ${{ github.actor != 'dependabot[bot]' }}
uses: elgohr/Publish-Docker-Github-Action@main
with:
name: lgohr/publish-docker-github-action
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
snapshot: true
tag_names: true