Skip to content

changing file ownership #13

changing file ownership

changing file ownership #13

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 develop.xar with Dockerfile
run: |
docker run --rm -i -v "$GITHUB_WORKSPACE:/app" --name sencha ghcr.io/bwbohl/sencha-cmd:2.1.0 ant
sudo chown -R "$(id -u):$(id -g)" build-xar
mv build-xar/*.xar build-xar/develop.xar
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: develop
prerelease: true
allowUpdates: true
replacesArtifacts: true
name: "Development build"
body: "Automatic release from the develop branch."
artifacts: build-xar/**/*