tidploy 0.16.0

Simple deployment tool for deploying small applications and loading secrets.
Documentation
name: Server Build

on:
  push:
    branches: [ main ]

permissions:
  packages: write
  contents: read

jobs:
  build-server:
    if: ${{ false }}
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Login to GitHub Container Registry
        uses: docker/login-action@v3
        with:
          registry: ghcr.io
          username: ${{ github.actor}}
          password: ${{ github.token }}
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3
      - name: Build and push
        uses: docker/build-push-action@v3
        with:
          context: bws-dployer
          tags: ghcr.io/tiptenbrink/bws-dployer:latest
          cache-from: type=gha
          cache-to: type=gha, mode=max
          push: ${{ github.event_name != 'pull_request' }}