Production Load YAML #4
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: Production Load YAML | |
on: | |
workflow_dispatch: | |
jobs: | |
load_yaml: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_ONLY: 'deploy' | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Start the ssh-agent | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region : us-east-1 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run load_yaml task | |
run: bundle exec kamal app exec 'bin/rails load_yml' -d production --reuse --primary |