Remove outline from Unfollow button #1
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 Images | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
web: | |
name: Web | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
- name: Build and push Web image 🚀 | |
uses: ./.github/actions/docker | |
with: | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} | |
image_name: web | |
docker_file: ./apps/web/Dockerfile | |
api: | |
name: API | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
- name: Build and push API image 🚀 | |
uses: ./.github/actions/docker | |
with: | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} | |
image_name: api | |
docker_file: ./apps/api/Dockerfile | |
- name: Trigger API Deployment 🚀 | |
uses: indiesdev/[email protected] | |
with: | |
url: https://api.hey.xyz/internal/railway/triggerDeployments | |
method: 'POST' | |
body: '{ "secret": "${{ secrets.SECRET }}", "serviceId": "4a2a1bfb-e499-4c71-bf7f-d9ad47443c31" }' | |
headers: '{ "Content-Type": "application/json", "Referer": "https://hey.xyz" }' | |
og: | |
name: OG | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
- name: Build and push OG image 🚀 | |
uses: ./.github/actions/docker | |
with: | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} | |
image_name: og | |
docker_file: ./apps/og/Dockerfile |