Merge pull request #695 from ItsFlash10/feat-canva #15
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: Continuous Deployment | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Docker login | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile.prod | |
push: true | |
tags: 100xdevs/dailycode-staging:${{ github.sha }} | |
build-args: | | |
DATABASE_URL=${{ secrets.STAGING_DATABASE }} | |
- name: Clone staging-ops repo, update, and push | |
env: | |
PAT: ${{ secrets.PAT }} | |
run: | | |
git clone https://github.com/code100x/staging-ops.git | |
cd staging-ops | |
sed -i 's|image: 100xdevs/dailycode-staging:.*|image: 100xdevs/dailycode-staging:${{ github.sha }}|' staging/dailycode/deployment.yml | |
git config user.name "GitHub Actions Bot" | |
git config user.email "actions@github.com" | |
git add staging/dailycode/deployment.yml | |
git commit -m "Update dailycode image to ${{ github.sha }}" | |
git push https://${PAT}@github.com/code100x/staging-ops.git main |