0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2025-09-28 01:29:03 +03:00

Switch from sh to bash

This commit is contained in:
Andrey Onishchenko
2024-03-02 14:55:37 +03:00
parent c12c5ac539
commit 91332d6088
7 changed files with 10 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ case $OS in
mv ./src/app/yandex-music.asar dist/yandex-music.asar
mv ./src/app/release_notes.json dist/release_notes.json
sh ./build_deb.sh -a all
bash ./build_deb.sh -a all
mv deb/*.deb dist
;;
"Ubuntu")

View File

@@ -27,7 +27,7 @@ jobs:
ref: ${{ (inputs.ref || '') }}
- name: Build
run: sh ./.github/workflows/build.sh
run: bash ./.github/workflows/build.sh
- name: Upload Arch artifact
uses: actions/upload-artifact@v4

View File

@@ -32,7 +32,7 @@ jobs:
run: python utility/generate_packages.py
- name: Retrieve version to make commit
run: sh .github/workflows/retrieve_version.sh
run: bash .github/workflows/retrieve_version.sh
- name: Commit and push changes
uses: EndBug/add-and-commit@v9.1.4
@@ -86,7 +86,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install jq
sh ./.github/workflows/retrieve_version.sh
bash ./.github/workflows/retrieve_version.sh
- name: Get Release Notes HTML
run: echo "release_html=$(jq -r --arg version "$VERSION" '.["desktop-release-notes." + $version]' ./dist/release_notes.json)" >> $GITHUB_ENV