m2k-gui: Set CMAKE_RUNTIME_OUTPUT_DIRECTORY for windows. #4397
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: linux-flatpak build | |
on: [push, pull_request] | |
env: | |
BUILD_HOST: ubuntu-latest | |
USERNAME: github-actions | |
jobs: | |
make-flatpak: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pull the Docker Image | |
run: docker pull cristianbindea/scopy2-flatpak | |
- name: Run Docker Image | |
run: | | |
$GITHUB_WORKSPACE/ci/general/gen_ci_envs.sh > $GITHUB_WORKSPACE/ci/general/gh-actions.envs | |
docker run --privileged \ | |
-v `pwd`:$GITHUB_WORKSPACE:rw \ | |
--env-file $GITHUB_WORKSPACE/ci/general/gh-actions.envs \ | |
cristianbindea/scopy2-flatpak /bin/bash -xe $GITHUB_WORKSPACE/ci/flatpak/inside_flatpak_docker.sh | |
- name: Set short git commit SHA | |
shell: bash | |
run: echo "commit_sha=$(git rev-parse --short ${{ github.sha }})" >> "$GITHUB_ENV" | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: scopy-flatpak-${{ env.commit_sha }} | |
path: ${{ github.workspace }}/Scopy.flatpak | |
- name: Upload master flatpak build to continous prerelease | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
run: | | |
DEPLOY_FILE=Scopy-${GITHUB_SHA::7}.flatpak | |
ARTIFACT_ARCHIVE=Scopy-flatpak.tar.gz | |
cp ${{ github.workspace }}/Scopy.flatpak ${DEPLOY_FILE} | |
tar -czvf ${ARTIFACT_ARCHIVE} ${DEPLOY_FILE} | |
wget https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz | |
tar xvf ghr_v0.13.0_linux_amd64.tar.gz | |
ghr_v0.13.0_linux_amd64/ghr -u ${{ github.repository_owner }} -r scopy -name "Continuous build" -b "Latest succesful master build " -prerelease -debug -replace continous ${ARTIFACT_ARCHIVE} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |