-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dont test build when release pipeline changes, change release pipeline
- Loading branch information
1 parent
7f99d6c
commit 7acee14
Showing
2 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ on: | |
- main | ||
paths-ignore: | ||
- '**.md' | ||
- '.github/workflows/release.yml' | ||
|
||
jobs: | ||
build-linux: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,28 +72,28 @@ jobs: | |
- uses: actions/download-artifact@v4 | ||
with: | ||
name: linux-build | ||
- name: Prepare DEB package | ||
run: | | ||
mkdir -p .debpkg/DEBIAN | ||
echo "Package: SoundscapeSync" > .debpkg/DEBIAN/control | ||
echo "Version: ${{ github.event.inputs.version }}" >> .debpkg/DEBIAN/control | ||
echo "Architecture: amd64" >> .debpkg/DEBIAN/control | ||
echo "Maintainer: Dominik Polakovics <[email protected]>" >> .debpkg/DEBIAN/control | ||
mkdir -p .debpkg/usr/bin | ||
cp fyne-cross/bin/linux-amd64/soundscape-sync .debpkg/usr/bin | ||
- name: Create DEB package | ||
uses: jiro4989/build-deb-action@v3 | ||
with: | ||
package: SoundscapeSync | ||
package_root: .debpkg | ||
maintainer: "Dominik Polakovics <[email protected]>" | ||
version: "${{ github.event.inputs.version }}" | ||
arch: 'amd64' | ||
desc: 'This is my sample package.' | ||
depends: 'ffmpeg' | ||
- name: get file name | ||
run: | | ||
mv *.deb soundscapesync-${{ github.event.inputs.version }}.deb | ||
# - name: Prepare DEB package | ||
# run: | | ||
# mkdir -p .debpkg/DEBIAN | ||
# echo "Package: SoundscapeSync" > .debpkg/DEBIAN/control | ||
# echo "Version: ${{ github.event.inputs.version }}" >> .debpkg/DEBIAN/control | ||
# echo "Architecture: amd64" >> .debpkg/DEBIAN/control | ||
# echo "Maintainer: Dominik Polakovics <[email protected]>" >> .debpkg/DEBIAN/control | ||
# mkdir -p .debpkg/usr/bin | ||
# cp fyne-cross/bin/linux-amd64/soundscape-sync .debpkg/usr/bin | ||
# - name: Create DEB package | ||
# uses: jiro4989/build-deb-action@v3 | ||
# with: | ||
# package: SoundscapeSync | ||
# package_root: .debpkg | ||
# maintainer: "Dominik Polakovics <[email protected]>" | ||
# version: "${{ github.event.inputs.version }}" | ||
# arch: 'amd64' | ||
# desc: 'This is my sample package.' | ||
# depends: 'ffmpeg' | ||
# - name: get file name | ||
# run: | | ||
# mv *.deb soundscapesync-${{ github.event.inputs.version }}.deb | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
|