v2.4.1-stable #379
Workflow file for this run
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
name: Build Linux | |
on: | |
push: | |
# branches: [ "master" ] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run build | |
run: | | |
./tools/linux/build-in-docker | |
./tools/linux/extract-from-docker | |
env: | |
CI: 1 | |
- name: Download media-scanner | |
uses: robinraju/[email protected] | |
with: | |
repository: "casparcg/media-scanner" | |
latest: true | |
fileName: "*-linux-x64.zip" | |
tarBall: false | |
zipBall: false | |
out-file-path: "casparcg_server/media-scanner" | |
extract: true | |
- name: Tidy media-scanner download | |
shell: bash | |
run: | | |
rm casparcg_server/media-scanner/*.zip | |
mv casparcg_server/media-scanner/* casparcg_server/ | |
rmdir casparcg_server/media-scanner | |
chmod +x casparcg_server/scanner | |
- name: Rename build | |
id: "rename-build" | |
shell: bash | |
run: | | |
TARGET=casparcg-server-${{ github.sha }}-ubuntu22.zip | |
zip -r "$TARGET" casparcg_server/ | |
echo "artifactname=$TARGET" >> $GITHUB_OUTPUT | |
# check if a release branch, or master, or a tag | |
if [[ "${{ github.ref_name }}" == "master" || "${{ github.ref_name }}" == "v2.4.x" ]] | |
then | |
# Only proceed if we have an sftp password | |
if [ -n "${{ secrets.SFTP_PASSWORD }}" ] | |
then | |
echo "uploadname=$TARGET" >> $GITHUB_OUTPUT | |
fi | |
fi | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: upload-artifact | |
path: ${{ steps.rename-build.outputs.artifactname }} | |
# - name: Copy single file to remote | |
# uses: garygrossgarten/[email protected] | |
# if: ${{ steps.rename-build.outputs.uploadname }} | |
# timeout-minutes: 5 | |
# with: | |
# local: "${{ steps.rename-build.outputs.uploadname }}" | |
# remote: "${{ secrets.SFTP_ROOT }}/${{ github.ref_name }}/${{ steps.rename-build.outputs.uploadname }}" | |
# host: ${{ secrets.SFTP_HOST }} | |
# username: ${{ secrets.SFTP_USERNAME }} | |
# password: ${{ secrets.SFTP_PASSWORD }} |