[GHA-Build] Separate distro and ls extensions builds. Initial trial of clearing S3 caches

This commit is contained in:
aboyko
2023-07-31 14:48:59 -04:00
parent 657a255f97
commit 44a46ec8a9
6 changed files with 114 additions and 64 deletions

View File

@@ -0,0 +1,26 @@
name: Release - Eclipse LS Extensions Build
concurrency:
group: release-eclipse-ls-extensions
cancel-in-progress: true
on:
workflow_dispatch:
jobs:
eclipse-ls-extension:
runs-on: ubuntu-latest
steps:
- name: Timestamp
id: timestamp
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- uses: ./.github/workflows/eclipse-ls-extensions-build.yml
with:
eclipse_profile: 'e427'
build_type: 'release'
skip_tests: true
sts4-language-servers-version: ${{ steps.timestamp.outputs.date }}
secrets: inherit
outputs:
sts4-language-servers-version: ${{ steps.timestamp.outputs.date }}