website / add Plausible tracker #36
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: 'Production deployment' | |
env: | |
FONTAWESOME_PACKAGE_TOKEN: ${{ secrets.FONTAWESOME_PACKAGE_TOKEN }} | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
buildandpush: | |
name: 'Build and push docker images' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
fetch-depth: 0 | |
- name: Set up Moon Toolchain | |
uses: 'moonrepo/setup-toolchain@v0' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
run: 'moon ci :docker-push' | |
deploy: | |
name: 'Deploy to VPS' | |
runs-on: ubuntu-latest | |
needs: buildandpush | |
environment: prod-manual | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
fetch-depth: 0 | |
- name: Set up Moon Toolchain | |
uses: 'moonrepo/setup-toolchain@v0' | |
- name: 'Redeploy from Dokploy on VPS' | |
env: | |
DOKPLOY_API_TOKEN: ${{ secrets.DOKPLOY_API_TOKEN }} | |
DOKPLOY_API_URL: ${{ secrets.DOKPLOY_API_URL }} | |
run: 'moon ci :dokploy-deploy' |