Sha256: 772bdf7660d8569ff45ad47ad453491e7be3671f867dbc33ea73ed8b697d24a5

Contents?: true

Size: 636 Bytes

Versions: 7

Compression:

Stored size: 636 Bytes

Contents

name: deploy
on:
  pull_request:
    types:
      - closed
jobs:
  deploy:
    if: github.event.pull_request.merged == true
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
      - name: Install SSH key
        uses: shimataro/ssh-key-action@v2
        with:
          key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }}
          known_hosts: unnecessary
          config: |
            Host *
              StrictHostKeyChecking no
              UserKnownHostsFile=/dev/null
      - name: deploy
        run: bundle exec bard deploy --skip-ci

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bard-0.60.0 install_files/.github/workflows/deploy.yml
bard-0.59.3 install_files/.github/workflows/deploy.yml
bard-0.59.2 install_files/.github/workflows/deploy.yml
bard-0.59.1 install_files/.github/workflows/deploy.yml
bard-0.59.0 install_files/.github/workflows/deploy.yml
bard-0.58.0 install_files/.github/workflows/deploy.yml
bard-0.57.0 install_files/.github/workflows/deploy.yml