Skip to content

Commit

Permalink
Fixes docker job and setup.sh updating
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillanacosta authored May 2, 2024
1 parent 4c91a72 commit ac2738b
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions .github/workflows/buildandpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,34 +24,24 @@ jobs:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Retrieve JAR version name
run: |
wget https://raw.githubusercontent.com/bridgedb/BridgeDbWebservice/main/pom.xml
echo "BDBVERSION=$(cat pom.xml | grep -m 1 -oP "(?<=<bridgedb-version>).*" | sed 's|</bridgedb-version>||g')" >> $GITHUB_ENV
wget https://raw.githubusercontent.com/bridgedb/BridgeDbWebservice/main/pom.xml
echo "BDBVERSION=$(cat pom.xml | grep -m 1 -oP "(?<=<bridgedb-version>).*" | sed 's|</bridgedb-version>||g')" >> $GITHUB_ENV
-
name: Retrieve WebService version name
run: |
wget https://raw.githubusercontent.com/bridgedb/BridgeDbWebservice/main/pom.xml
echo "BRIDGEDBWSVERSION=$(cat pom.xml | grep -m 1 -oP "(?<=<version>).*" | sed 's|</version>||g')" >> $GITHUB_ENV
wget https://raw.githubusercontent.com/bridgedb/BridgeDbWebservice/main/pom.xml
echo "BRIDGEDBWSVERSION=$(cat pom.xml | grep -m 1 -oP "(?<=<version>).*" | sed 's|</version>||g')" >> $GITHUB_ENV
- name: Update setup.sh with BDBWSVERSION
run: |
cat setup.sh | sed 's|BRIDGEDBWSVERSION=".\+"|BRIDGEDBWSVERSION="${{ env.BRIDGEDBWSVERSION }}"|g' > setup.sh
cat setup.sh | sed 's|BRIDGEDBWSVERSION=".\+"|BRIDGEDBWSVERSION="${{ env.BRIDGEDBWSVERSION }}"|g' > setup_tmp.sh
mv setup_tmp.sh setup.sh
- name: commit and push setup.sh # Test whether it is necessary to push before the docker action accesses repository from git context
- name: commit and push setup.sh
run: |
git config --local user.name actions-user
git config --local user.email "[email protected]"
Expand All @@ -67,6 +57,18 @@ jobs:
runs-on: ubuntu-latest
needs: update-version
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Retrieve tags
run: |
Expand Down

0 comments on commit ac2738b

Please sign in to comment.