Publish Beta Manually #5
This file contains hidden or 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: 'Publish Beta Manually' | |
| on: | |
| workflow_dispatch: # This allows manual triggering only from the Actions tab | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout DIVE | |
| uses: actions/checkout@main | |
| - name: Setup Node.js | |
| uses: actions/setup-node@main | |
| - name: Search for cached dependencies | |
| uses: actions/cache@main | |
| id: yarn-cache | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install DIVE dependencies (if cache not found) | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| run: yarn | |
| eslint: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - name: Checkout DIVE | |
| uses: actions/checkout@main | |
| - name: Search for cached dependencies | |
| uses: actions/cache@main | |
| id: yarn-cache | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install DIVE dependencies (if cache not found) | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| run: yarn | |
| - name: Lint DIVE | |
| run: yarn lint | |
| unit: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - name: Checkout DIVE | |
| uses: actions/checkout@main | |
| - name: Search for cached dependencies | |
| uses: actions/cache@main | |
| id: yarn-cache | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install DIVE dependencies (if cache not found) | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| run: yarn | |
| - name: Unit-Test DIVE | |
| run: yarn unit | |
| prettier-fix: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - name: Checkout DIVE | |
| uses: actions/checkout@main | |
| - name: Search for cached dependencies | |
| uses: actions/cache@main | |
| id: yarn-cache | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install DIVE dependencies (if cache not found) | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| run: yarn | |
| - name: Prettier fix DIVE | |
| run: yarn prettier:fix && git add . | |
| publish-beta: | |
| runs-on: ubuntu-latest | |
| needs: [eslint, unit, prettier-fix] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| - name: Search for cached dependencies | |
| uses: actions/cache@v4 | |
| id: yarn-cache | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install dependencies (if cache not found) | |
| if: steps.yarn-cache.outputs.cache-hit != 'true' | |
| run: yarn | |
| - name: Register git user | |
| run: | | |
| git config user.name "GitHub Actions" | |
| git config user.email "actions@github.com" | |
| - name: Calculate next beta version from branches | |
| id: calculate-beta | |
| run: | | |
| # Fetch all remote branches | |
| git fetch --all | |
| # Get the current version from package.json | |
| current_version=$(node -p "require('./package.json').version") | |
| # Extract the base version (major.minor.patch) and increment the patch number | |
| base_version=$(echo $current_version | awk -F'-' '{print $1}') | |
| IFS='.' read -r major minor patch <<< "$base_version" | |
| next_patch=$((patch + 1)) | |
| # Rebuild the new base version | |
| next_version="$major.$minor.$next_patch" | |
| # Find all beta branches matching the pattern | |
| prefix="beta/$next_version-beta" | |
| last_beta=$(git branch -r | grep "origin/$prefix" | awk -F '-' '{print $NF}' | sort -n | tail -n 1) | |
| if [ -z "$last_beta" ]; then | |
| next_beta="$next_version-beta.0" # Start at beta.0 if no beta exists | |
| else | |
| # Increment the beta number (without trying arithmetic on the full string) | |
| beta_number=$(echo $last_beta | sed 's/[^0-9]*//g') # Extract numeric part | |
| next_beta="$next_version-beta.$((beta_number + 1))" | |
| fi | |
| # Export the next beta version | |
| echo "next_beta=$next_beta" >> $GITHUB_ENV | |
| - name: Update package.json with new beta version | |
| run: | | |
| npm version --no-git-tag-version ${{ env.next_beta }} | |
| git add package.json | |
| - name: Create beta branch | |
| run: | | |
| git checkout -b beta/${{ env.next_beta }} | |
| - name: Build DIVE | |
| run: yarn build | |
| - name: Add build files | |
| run: git add ./build -f && git add package.json | |
| - name: Commit changes | |
| run: | | |
| git commit -m "Beta $(node -p "require('./package.json').version")" | |
| - name: Create tag | |
| run: | | |
| git tag -a $(node -p "require('./package.json').version") -m "Beta v$(node -p "require('./package.json').version")" | |
| - name: Push changes | |
| run: | | |
| git push origin beta/$(node -p "require('./package.json').version") --follow-tags | |
| - name: Authenticate with NPM | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc | |
| - name: Publish Beta tag to npm | |
| run: | | |
| yarn publish --tag beta |