Make text effect from file thread safe #11
This file contains hidden or 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
| epname: Linux Docker Manual | ||
| on: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build-linux: | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| with: | ||
| submodules: 'true' | ||
| - run: docker pull ghcr.io/xlightssequencer/xlights-build-docker:master | ||
| - run: docker run --name buildvm ghcr.io/xlightssequencer/xlights-build-docker:master /bin/bash Recipe.appimage | ||
| - run: 'docker cp buildvm:/xLights/xLights/AppImage/ /tmp/' | ||
| - run: ls -lh /tmp/AppImage | ||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: xLights_AppImage | ||
| path: '/tmp/AppImage/*.AppImage' | ||