Skip to content

Commit

Permalink
Add deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Apr 25, 2023
1 parent eb9492a commit a4bdd3f
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build and deploy
on:
push:
branches:
- "master"

jobs:
build:
name: Build container image
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/cog-creators/cog-browser
flavor: |
latest=true
tags: |
type=sha
- name: Login to GitHub Container Registry
if: github.repository_owner == 'cog-creators'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
uses: docker/build-push-action@v4
with:
push: ${{ github.repository_owner == 'cog-creators' }}
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}

deploy:
name: Deploy to index.discord.red
needs: build
environment: Deployment
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'cog-creators' }}
steps:
- name: Trigger deployment.
run: >-
curl -H "X-Token: ${{ secrets.WEBHOOK_DEPLOY_INDEX_TOKEN }}" "${{ secrets.WEBHOOK_DEPLOY_INDEX_URL }}"

0 comments on commit a4bdd3f

Please sign in to comment.