You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
835 B
39 lines
835 B
3 years ago
|
name: Docker Develop Release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ develop ]
|
||
|
pull_request:
|
||
|
branches: [ develop ]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
docker-develop:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
|
||
|
- name: Check Out Repo
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
ref: develop
|
||
|
|
||
|
- name: Login to Docker Hub
|
||
|
uses: docker/login-action@v1
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||
|
|
||
|
- name: Set up Docker Buildx
|
||
|
id: buildx
|
||
|
uses: docker/setup-buildx-action@v1
|
||
|
|
||
|
- name: Build and push
|
||
|
id: docker_build
|
||
|
uses: docker/build-push-action@v2
|
||
|
with:
|
||
|
context: ./
|
||
|
file: ./Dockerfile
|
||
|
push: true
|
||
|
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:develop
|