wm-AllKids-tibi2023/.gitea/actions/init-db/action.yml
2023-12-24 09:46:36 +00:00

20 lines
496 B
YAML

name: initialize database
description: initialize database by using database of test environment
author: BinKrassDuFass
inputs:
MONGODB_SERVICE_NAME:
description: 'Name of the MongoDB service'
required: true
default: 'mongo'
runs:
using: composite
steps:
- name: Install MongoDB tools
run: sudo apt-get install -y mongodb-database-tools
- name: Restore MongoDB Data
run: mongorestore --uri "mongodb://${{inputs.MONGODB_SERVICE_NAME}}:27017" /.gitea/