11 lines
340 B
YAML
11 lines
340 B
YAML
name: Export
|
|
run-name: Export
|
|
on: [workflow_dispatch]
|
|
jobs:
|
|
export:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: export into Game Server
|
|
run: curl -s https://adam.math.hhu.de/import/trigger/${GITHUB_REPOSITORY} > /dev/null && \
|
|
echo 'View progress at https://adam.math.hhu.de/import/status/${GITHUB_REPOSITORY}'
|