Skip to content

Migrating to shell based build and removing ANT build #12

Migrating to shell based build and removing ANT build

Migrating to shell based build and removing ANT build #12

Workflow file for this run

name: PR to main branch zip generate
on:
pull_request:
branches: [ "main", "development" ]
paths:
- 'base/**'
- 'src/**'
- 'build.xml'
jobs:
pr-generate-zips:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build with build.sh
run: ./build.sh
- name: Setting date and time in env variable
run: echo "date-time-env=$(date '+%Y%m%d-%H%M%S')" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
name: Uploading generated zip files
with:
name: pr-zips-${{ env.date-time-env }}
path: generated/*.zip