Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
volkerdoerr authored Oct 19, 2023
1 parent 5a9ab69 commit 1750136
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,32 @@ env:
GH_TOKEN: ${{ github.token }}

jobs:
convert-and-deploy:

convert-test-files:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
- name: Checkout repository
uses: actions/checkout@v3
- name: Convert polarion files
run: |
gh release download wip --pattern 'gpc'
chmod +x gpc
./gpc ./input/filelist.txt ./output
rm gpc
- name: Deploy conversion output
convert-production-files:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Convert polarion files from gemspec.dev.ccs.gematik.solutions/docs/
run: |
gh release download wip --pattern 'gpc'
chmod +x gpc
mkdir -p ./output
./gpc https://gemspec.dev.ccs.gematik.solutions/docs/filelist.txt ./output
rm gpc
- name: Deploy conversion output to gemspec.online
run: |
mkdir ~/.ssh
ssh-keyscan -H ssh.strato.de >> ~/.ssh/known_hosts
Expand Down

0 comments on commit 1750136

Please sign in to comment.