cleaned .github, and left only the otel_sdk #1
This file contains 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: otel_sdk | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
otel_sdk_release: | |
name: build otel_sdk | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: run otel_sdk_build.cmd | |
run: | | |
echo "build --disk_cache=c:/b/d" > ../top.bazelrc | |
echo "common --repository_cache=c:/b/r" >> ../top.bazelrc | |
echo "startup --output_user_root=c:/b/u" >> ../top.bazelrc | |
./otel_sdk_build.cmd | |
- name: release otel_sdk.zip | |
uses: ncipollo/[email protected] | |
with: | |
allowUpdates: true | |
replacesArtifacts: true | |
artifacts: ./otel_sdk.zip |