Update environment variables and redirect user to login page if no ro… #181
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: Embedded SDK Release | |
on: | |
push: | |
branches: | |
- "master" | |
- "[0-9].[0-9]*" | |
jobs: | |
config: | |
runs-on: "ubuntu-22.04" | |
outputs: | |
has-secrets: ${{ steps.check.outputs.has-secrets }} | |
steps: | |
- name: "Check for secrets" | |
id: check | |
shell: bash | |
run: | | |
if [ -n "${{ (secrets.NPM_TOKEN != '') || '' }}" ]; then | |
echo "has-secrets=1" >> "$GITHUB_OUTPUT" | |
fi | |
build: | |
needs: config | |
if: needs.config.outputs.has-secrets | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: superset-embedded-sdk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm ci | |
- run: npm run ci:release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |