Files
Publish-Docker-Github-Action/.github/workflows/test_integration.yml
Lars Gohr f0feda3054 ♻️ Define digest explicitly to improve stability. Refactor
integration tests to use latest action from repository
2021-09-09 20:11:55 +02:00

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