Merge pull request #42 from SHMModbus/feature_send_signal #24
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
| on: | |
| [ push, pull_request ] | |
| name: Flatpak_test | |
| jobs: | |
| flatpak: | |
| name: "Flatpak" | |
| runs-on: ubuntu-latest | |
| container: | |
| image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08 | |
| options: --privileged | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Git config | |
| run: git config --global --add safe.directory /__w/modbus_tcp_client_shm/modbus_tcp_client_shm | |
| - name: Init submodules | |
| run: git submodule init | |
| - name: Update submodules | |
| run: git submodule update | |
| - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6 | |
| name: "Build" | |
| with: | |
| bundle: test_modbus-tcp-client-shm.flatpak | |
| manifest-path: network.koesling.test-modbus-tcp-client-shm.yml | |
| cache-key: flatpak-builder-${{ github.sha }} |