Bump rexml from 3.2.5 to 3.3.3 #12
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 Now | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
deploy-now: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch project data | |
uses: ionos-deploy-now/retrieve-project-info-action@v1 | |
id: project | |
with: | |
api-key: ${{ secrets.IONOS_API_KEY }} | |
project: ${{ secrets.IONOS_PROJECT_ID }} | |
service-host: api-eu.ionos.space | |
- name: checkout | |
if: ${{ steps.project.outputs.deployment-enabled == 'true' }} | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Cache dependencies | |
if: ${{ steps.project.outputs.deployment-enabled == 'true' }} | |
uses: actions/cache@v1 | |
with: | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
path: vendor/bundle | |
restore-keys: ${{ runner.os }}-gems- | |
- name: Build project | |
if: ${{ steps.project.outputs.deployment-enabled == 'true' }} | |
uses: helaili/jekyll-action@v2 | |
with: | |
build_only: true | |
jekyll_build_options: -d _site | |
pre_build_commands: | | |
apk --update add vips vips-tools nodejs | |
- name: Deploy build | |
if: ${{ steps.project.outputs.deployment-enabled == 'true' }} | |
uses: ionos-deploy-now/deploy-to-ionos-action@v1 | |
with: | |
api-key: ${{ secrets.IONOS_API_KEY }} | |
bootstrap-deploy: ${{ steps.project.outputs.bootstrap-deploy }} | |
branch-id: ${{ steps.project.outputs.branch-id }} | |
dist-folder: _site | |
project: ${{ secrets.IONOS_PROJECT_ID }} | |
remote-host: ${{ steps.project.outputs.remote-host }} | |
service-host: api-eu.ionos.space | |
storage-quota: ${{ steps.project.outputs.storage-quota }} |