Skip to content

Build Weekly Release #32

Build Weekly Release

Build Weekly Release #32

name: Build Weekly Release
on:
workflow_dispatch:
# schedule:
# - cron: '10 0 * * 3'
## For testing only!
# push:
# branches:
# - feat/unity-cloud-build
jobs:
get-info:
name: Get Info
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
latest_version: ${{ steps.get_version.outputs.latest_version }}
full_version: ${{ steps.get_version.outputs.next_full_version }}
tag_version: ${{ steps.get_version.outputs.next_tag_version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get version
id: get_version
uses: ./.github/actions/version
# Run a clean build (no cache)
build:
name: Build Unity Cloud
needs: get-info
uses: ./.github/workflows/build-unitycloud.yml
env:

Check failure on line 36 in .github/workflows/build-release-weekly.yml

View workflow run for this annotation

GitHub Actions / Build Weekly Release

Invalid workflow file

The workflow is not valid. .github/workflows/build-release-weekly.yml (Line: 36, Col: 5): Unexpected value 'env'
IS_RELEASE_BUILD: true # This environment variable indicates a release build
TAG_VERSION: ${{ needs.get-info.outputs.tag_version }}
with:
profile: none
cache: false
cache_strategy: none
version: ${{ needs.get-info.outputs.full_version }}
sentry_enabled: true
secrets: inherit