Skip to content

Commit

Permalink
CI: prepare spec file only in the last stage
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Jun 3, 2024
1 parent 892eb05 commit d9c15e5
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,6 @@ jobs:
repository: ${{ inputs.repo }}/reva
path: reva
ref: ${{ inputs.branch }}
- name: Bump version in spec file
run: |
export GOPATH=$(pwd)/go
export PATH=$PATH:$GOPATH/bin
cd reva
export REVAVER="Reva commit $(git rev-parse --short HEAD) at ${{ inputs.repo }}/${{ inputs.branch }}"
cd ../reva-release
go run prepare_release.go -author "cernbox-admins[bot]" -email "[email protected]" -reva-version "$REVAVER"
echo "version=$(awk '$1 == "Version:" {print $2}' cernbox-revad.spec)" >> $GITHUB_ENV
echo "Reva version is "\""$REVAVER"\"
- name: Copy necessary files for building the RPMs
run: |
cp reva-release/Makefile reva/Makefile.rpm
Expand Down Expand Up @@ -97,9 +87,12 @@ jobs:
run: |
export GOPATH=$(pwd)/go
export PATH=$PATH:$GOPATH/bin
cd reva-release
go run prepare_release.go -author "cernbox-admins[bot]" -email "[email protected]"
cd reva
export REVAVER="Reva commit $(git rev-parse --short HEAD) at ${{ inputs.repo }}/${{ inputs.branch }}"
cd ../reva-release
go run prepare_release.go -author "cernbox-admins[bot]" -email "[email protected]" -reva-version "$REVAVER"
echo "version=$(awk '$1 == "Version:" {print $2}' cernbox-revad.spec)" >> $GITHUB_ENV
echo "Reva version is "\""$REVAVER"\"
- name: Push version
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down

0 comments on commit d9c15e5

Please sign in to comment.