mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-15 09:21:00 -04:00
20 lines
457 B
YAML
20 lines
457 B
YAML
name: Integration Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Publish to Registry
|
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
uses: ./
|
|
with:
|
|
name: lgohr/publish-docker-github-action
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
snapshot: true
|
|
tag_names: true
|