Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian authored Jan 13, 2025
1 parent f976cd7 commit 7980e34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linux-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# Put something in the changelog
export DEBEMAIL="[email protected]"
export DEBFULLNAME="CasparCG Builds"
dch -v "1.2.3-dev+asda" --create -D ${{ matrix.distribution }} --package casparcg-server-beta "Build"
dch -v "$BUILD_VERSION" --create -D ${{ matrix.distribution }} --package casparcg-server-beta "Build"
# Install build dependencies
sudo apt-get build-dep .
Expand Down Expand Up @@ -83,9 +83,9 @@ jobs:
cp README.md dist/
cp tools/linux/deb/INSTALLING dist/
# check if a release branch, or master, or a tag
if [[ "${{ github.ref_name }}" == "master" || "${{ github.ref_name }}" == "2.3.x-lts" ]]
then
# # check if a release branch, or master, or a tag
# if [[ "${{ github.ref_name }}" == "master" || "${{ github.ref_name }}" == "2.3.x-lts" ]]
# then
# Only proceed if we have an sftp password
if [ -n "${{ secrets.SFTP_PASSWORD }}" ]
then
Expand All @@ -98,7 +98,7 @@ jobs:
ssh-keyscan -H ${{ secrets.SFTP_HOST }} > $HOME/.ssh/known_hosts
sshpass -p "${{ secrets.SFTP_PASSWORD }}" scp -r "${{ steps.setup-env.outputs.BUILD_FILENAME }}.zip" "${{ secrets.SFTP_USERNAME }}@${{ secrets.SFTP_HOST }}:${{ secrets.SFTP_ROOT }}/${{ github.ref_name }}/${{ steps.setup-env.outputs.BUILD_FILENAME }}.zip"
fi
fi
# fi
env:
CI: 1
Expand Down

0 comments on commit 7980e34

Please sign in to comment.