Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricebrito committed Nov 1, 2023
1 parent 6c1c1e7 commit a9d5900
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,7 @@ jobs:
a=$(cat codemeta.json | jq -r '.author[0].affiliation["name"]') \
yq eval -i '."s:author" += [{"class": "s:Person", "s.name": env(n), "s.email": env(e), "s.affiliation": env(a)}]' $cwl
done
- run: mkdir downloads
- run: |
for cwl in "app-water-bodies-cloud-native" "app-water-body-cloud-native" "app-water-body"
do
cp cwl-workflow/${cwl}.cwl downloads/${cwl}.${{needs.version.outputs.app-version}}.cwl
done
create-release:

Expand Down Expand Up @@ -138,7 +133,14 @@ jobs:
matrix:
step: ["app-water-bodies-cloud-native", "app-water-body-cloud-native", "app-water-body"]

steps:
steps:
- uses: actions/checkout@v2
- run: |
mkdir downloads
for cwl in "app-water-bodies-cloud-native" "app-water-body-cloud-native" "app-water-body"
do
cp cwl-workflow/${cwl}.cwl downloads/${cwl}.${{needs.version.outputs.app-version}}.cwl
done
- uses: actions/upload-artifact@v2
with:
name: application-package
Expand Down

0 comments on commit a9d5900

Please sign in to comment.