Skip to content

Commit

Permalink
ci: sed plz
Browse files Browse the repository at this point in the history
  • Loading branch information
RanolP committed Apr 27, 2024
1 parent 11f98fe commit 368d286
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/follow-up.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
run: npx @openapitools/openapi-generator-cli batch --clean rust.yaml
- name: Update Version
run: |
sed --version &&
file=unofficial-documentation/tsp-output/@typespec/openapi3/openapi.yaml &&
cat $file | head -n10 &&
version=$(sed -rn 's/\s+version:\s*"([^"]+)"/\1/p' $file | sed -rn 's/\.0+([0-9]+)/.\1/p') &&
echo New Version: $version &&
file=unofficial-documentation/tsp-output/@typespec/openapi3/openapi.yaml && \
sed -rn 's/version:(.+)/\1/p' $file && \
sed -rn 's/\s+version:\s*"([^"]+)"/\1/p' $file && \
version=$(sed -rn 's/\s+version:\s*"([^"]+)"/\1/p' $file | sed -rn 's/\.0+([0-9]+)/.\1/p') && \
echo New Version: $version && \
sed -ri ":a;N;\$!ba;s/\"solvedac_api\"\nversion = \"[^\"]+\"/\"solvedac_api\"\nversion = \"$version\"/" Cargo.toml
- name: Move Generated Files
run: |
Expand Down

0 comments on commit 368d286

Please sign in to comment.