Skip to content

Commit 8052af1

Browse files
authored
Merge pull request #159 from fattureincloud/fix-workflow
Fix workflow
2 parents 5223a2a + 66d00ed commit 8052af1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/bump-version.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- id: setup-libraries
2525
name: Install libraries
2626
run: |
27-
sudo add-apt-repository ppa:rmescandon/yq -y
28-
sudo apt update
29-
sudo apt install yq -y
27+
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
28+
chmod +x /usr/local/bin/yq
29+
yq --version
3030
3131
- id: read-openapi-version
3232
name: Read OpenAPI Version

.github/workflows/release-version.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
run: |
2828
npm install -g yarn
2929
yarn global add standard-version
30-
sudo add-apt-repository ppa:rmescandon/yq -y
31-
sudo apt update
32-
sudo apt install yq -y
30+
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
31+
chmod +x /usr/local/bin/yq
32+
yq --version
3333
cd ./scripts/
3434
yarn
3535

0 commit comments

Comments
 (0)