Skip to content

Commit

Permalink
Actions update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gelmo committed Oct 26, 2023
1 parent 03a550e commit 46f902e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-theme-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
- simply-keep-dev
jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Update INQUIRYHOOKURL
run: perl -pi -e 's/INQUIRYHOOKURL/"$ENV{INQUIRYHOOK}"/' assets/scripts/itk.js
env:
INQUIRYHOOK: ${{ secrets.INQUIRYHOOK }}
- name: Deploy Ghost Theme Dev
uses: TryGhost/action-deploy-theme@v1.4.0
uses: TryGhost/action-deploy-theme@v1
with:
api-url: ${{ secrets.GHOST_ADMIN_API_URL_DEV }}
api-key: ${{ secrets.GHOST_ADMIN_API_KEY_DEV }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-theme-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
- simply-keep-stage
jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Update INQUIRYHOOKURL
run: perl -pi -e 's/INQUIRYHOOKURL/"$ENV{INQUIRYHOOK}"/' assets/scripts/itk.js
env:
INQUIRYHOOK: ${{ secrets.INQUIRYHOOK }}
- name: Deploy Ghost Theme Stage
uses: TryGhost/action-deploy-theme@v1.4.0
uses: TryGhost/action-deploy-theme@v1
with:
api-url: ${{ secrets.GHOST_ADMIN_API_URL_STG }}
api-key: ${{ secrets.GHOST_ADMIN_API_KEY_STG }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-theme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
- simply-keep
jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Update INQUIRYHOOKURL
run: perl -pi -e 's/INQUIRYHOOKURL/"$ENV{INQUIRYHOOK}"/' assets/scripts/itk.js
env:
INQUIRYHOOK: ${{ secrets.INQUIRYHOOK }}
- name: Deploy Ghost Theme
uses: TryGhost/action-deploy-theme@v1.4.0
uses: TryGhost/action-deploy-theme@v1
with:
api-url: ${{ secrets.GHOST_ADMIN_API_URL }}
api-key: ${{ secrets.GHOST_ADMIN_API_KEY }}
Expand Down

0 comments on commit 46f902e

Please sign in to comment.