test: Remove GA #10
This file contains hidden or 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: Build and Deploy SSR Image | |
| # on: | |
| # push: | |
| # branches: ["main"] | |
| # env: | |
| # REGISTRY: ghcr.io | |
| # IMAGE_NAME: "coreybruyere/coreybruyere-v4" | |
| # jobs: | |
| # build-and-deploy: | |
| # runs-on: ubuntu-latest | |
| # permissions: | |
| # contents: read | |
| # packages: write | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v3 | |
| # - name: Login to ghcr.io | |
| # uses: docker/login-action@v2 | |
| # with: | |
| # registry: ${{ env.REGISTRY }} | |
| # username: ${{ github.actor }} | |
| # password: ${{ secrets.GITHUB_TOKEN }} | |
| # - name: Build image and push to registry | |
| # uses: docker/build-push-action@v4 | |
| # with: | |
| # context: . | |
| # file: Dockerfile | |
| # platforms: linux/amd64 | |
| # push: true | |
| # tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest | |
| # - name: Deploy to Coolify | |
| # run: | | |
| # curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' |