Fix transparent flash div blocking clicks (#297) #159
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: CD | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
known_hosts: ${{ vars.KNOWN_HOSTS }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Setup Docker | |
uses: docker/setup-buildx-action@v2 | |
- uses: crazy-max/ghaction-github-runtime@v2 | |
- name: Deploy to production! | |
run: bundle exec kamal deploy | |
env: | |
KAMAL_REGISTRY_USERNAME: ${{ github.actor }} | |
KAMAL_REGISTRY_PASSWORD: ${{ github.token }} | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
REDIS_URL: ${{ secrets.REDIS_URL }} | |
APP_REVISION: ${{ github.sha }} |