This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
Update ghcr.io/docker-mailserver/docker-mailserver Docker tag to v13.3.0 #14
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: deploy-docker-mailserver | |
on: | |
push: | |
paths: | |
- '.github/workflows/docker-mailserver.yml' | |
- 'docker-mailserver/**' | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: Docker-mailserver | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Tailscale | |
uses: tailscale/github-action@65cdd9a05d7ebe4ef4e8c70141f5d84e1cd4cab4 | |
with: | |
oauth-client-id: ${{ secrets.TAILSCALE_CLIENT_ID }} | |
oauth-secret: ${{ secrets.TAILSCALE_SECRET }} | |
tags: tag:deploy-ci | |
hostname: Github-actions | |
version: ${{ vars.TAILSCALE_VERSION }} | |
- name: Start Deployment | |
uses: FarisZR/[email protected] | |
with: | |
remote_docker_host: ${{ secrets.server_address }} | |
tailscale_ssh: true # no need for manual private and public keys | |
compose_file_path: docker-mailserver/docker-compose.yml | |
args: -p docker-mailserver up -d --remove-orphans | |
upload_directory: true | |
docker_compose_directory: docker-mailserver |