Skip to content

Commit

Permalink
[devOps] using composite actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jm committed Nov 8, 2023
1 parent 32d50e3 commit b5b2271
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/erase-db/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ inputs:
type: string
NAME:
description: 'docker compose project name'
required: false
required: true
type: string
default: 'dspace-${{ inputs.INSTANCE }}'

runs:
using: "composite"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
- uses: ./.github/actions/erase-db
with:
INSTANCE: ${{ env.INSTANCE }}
NAME: 'dspace-${{ env.INSTANCE }}'

- name: deploy dspace-import on dev-5
working-directory: build-scripts/run/
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/import.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- uses: ./.github/actions/erase-db
with:
INSTANCE: ${{ env.INSTANCE }}
NAME: 'dspace-${{ env.INSTANCE }}'

- name: deploy dspace-import on dev-5
working-directory: build-scripts/run/
Expand Down

0 comments on commit b5b2271

Please sign in to comment.