mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-12 18:07:12 -04:00
20 lines
510 B
YAML
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
|