docker-scripts/.github/workflows/torrserver-temp.yml
2022-09-10 22:12:51 +03:00

39 lines
936 B
YAML

name: torrserver-temp
on:
# push:
# branches:
# - 'develop'
schedule:
- cron: '0 0 * * *' # At the end of every day
jobs:
build-forked-fixed-independed-images:
name: TorrServer image
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Log into registry
run: echo "${{ secrets.DOCKER_SERVER_KEY }}" | docker login -u "${{ secrets.DOCKER_SERVER_LOGIN }}" --password-stdin
- name: Test Make
run: make
- name: Docker Compose Update
run: make docker-compose-update
##################################################################################
- name: Build TorrServer
run: cd linux/ecosystem/torrserver && make build
- name: Push TorrServer
run: cd linux/ecosystem/torrserver && make deploy
##################################################################################
- name: Cleanup
run: make docker-clean