changing to direct sencha image use #6
Workflow file for this run
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
| name: Release develop state | |
| on: | |
| push: | |
| branches: | |
| - ftr-github-release-develop | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # fetch all history to include latest tags for build metadata | |
| submodules: 'recursive' | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Build Frontend xar with Dockerfile | |
| run: | | |
| docker run --rm -it -v "$GITHUB_WORKSPACE:/app" --name sencha ghcr.io/bwbohl/sencha-cmd:2.1.0 | |
| - name: Create GitHub Release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| tag: develop | |
| overwrite: true | |
| prerelease: true | |
| name: "Development build" | |
| body: "Automatic release from the develop branch." | |
| artifacts: build-xar/**/* |