IRS module #1641
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker image build test | |
on: | |
pull_request: | |
jobs: | |
push_to_registry: | |
name: Docker image build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup variables | |
id: variables | |
run: echo "::set-output name=version::${GITHUB_REF##*/}" | |
- name: Docker image build.Not push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false | |
tags: | | |
ghcr.io/ununifi/ununifid:test |