Bump rails from 7.1.2 to 7.1.3 (#8) #58
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 | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Deploy: | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_BUILDKIT: 1 | |
RAILS_ENV: production | |
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | |
KAMAL_REGISTRY_PASSWORD: ${{ secrets.DOCKER_REGISTRY_KEY }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
bundler-cache: true | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: hschne | |
password: ${{ secrets.DOCKER_REGISTRY_KEY }} | |
- name: Set Tag | |
id: tag | |
run: | | |
if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then | |
GITHUB_SHA=${{ github.event.pull_request.head.sha }} | |
fi | |
echo "tag=$(git rev-parse "$GITHUB_SHA")" >> $GITHUB_OUTPUT | |
- name: Build Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
builder: ${{ steps.buildx.outputs.name }} | |
push: true | |
labels: | | |
"service=data-dead-drop" | |
tags: | | |
"hschne/data-dead-drop:latest" | |
"hschne/data-dead-drop:${{ steps.tag.outputs.tag }}" | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Deploy command | |
run: bundle exec kamal deploy --skip-push |