feat: add basic react support (#31) #6
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: Run Release | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # for googleapis/release-please-action to create release commit | |
pull-requests: write # for googleapis/release-please-action to create release PR | |
# Release-please creates a PR that tracks all changes | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
target-branch: main | |
- name: Dump Release Please Output | |
env: | |
RELEASE_PLEASE_OUTPUT: ${{ toJSON(steps.release.outputs) }} | |
run: | | |
echo "$RELEASE_PLEASE_OUTPUT" | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
release_tag_name: ${{ steps.release.outputs.tag_name }} | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
go-release: | |
needs: release-please | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
if: ${{ fromJSON(needs.release-please.outputs.release_created) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.release-please.outputs.release_tag_name }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Build | |
run: go build -o openfeature ./src | |
- uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.release-please.outputs.upload_url }} | |
asset_path: ./openfeature | |
asset_name: openfeature | |
asset_content_type: application/octet-stream |