Skip to content

Commit

Permalink
Merge pull request #67 from xioren/patch-2
Browse files Browse the repository at this point in the history
Update soda to 9.0
  • Loading branch information
mirkobrombin authored Apr 25, 2024
2 parents 5f4f076 + 67e8933 commit 83fd932
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/build-soda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ on:
- 'soda'
workflow_dispatch:
env:
VERSION: 8.0-2
BRANCH: experimental_8.0
WINE_VERSION: 9.0
BRANCH: experimental_9.0
REVISION: 0
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -18,7 +19,7 @@ jobs:
working-directory: /home/runner/work/
run: |
mkdir -p /home/runner/.config/frogminer/
sudo apt purge -y ubuntu-advantage-tools
sudo apt purge -y ubuntu-advantage-tools python3-update-manager
sudo dpkg --add-architecture i386 && sudo apt update
sudo apt install aptitude
sudo aptitude remove -y '?narrow(?installed,?version(deb.sury.org))'
Expand All @@ -40,16 +41,16 @@ jobs:
- name: package
working-directory: /home/runner/work/wine-tkg-git/wine-tkg-git/non-makepkg-builds/
run: |
mv wine-tkg-* soda-$VERSION-x86_64
tar cJvf soda-$VERSION-x86_64.tar.xz soda-$VERSION-x86_64
mv soda-$VERSION-x86_64.tar.xz /tmp/soda-$VERSION-x86_64.tar.xz
mv wine-tkg-* soda-$WINE_VERSION-$REVISION-x86_64
tar cJvf soda-$WINE_VERSION-$REVISION-x86_64.tar.xz soda-$WINE_VERSION-$REVISION-x86_64
mv soda-$WINE_VERSION-$REVISION-x86_64.tar.xz /tmp/soda-$WINE_VERSION-$REVISION-x86_64.tar.xz
- name: release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: false
prerelease: false
automatic_release_tag: "soda-${{ env.VERSION }}"
title: "Soda ${{ env.VERSION }}"
files: "/tmp/soda-${{ env.VERSION }}-x86_64.tar.xz"
automatic_release_tag: "soda-${{ env.WINE_VERSION }}-${{ env.REVISION }}"
title: "Soda ${{ env.WINE_VERSION }}-${{ env.REVISION }}"
files: "/tmp/soda-${{ env.WINE_VERSION }}-${{ env.REVISION }}-x86_64.tar.xz"

0 comments on commit 83fd932

Please sign in to comment.