Update dependency globals to ^17.8.0 (#1947) #344
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: Deploy to xwp/stream-dist Repository | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| release: | |
| types: [published] | |
| jobs: | |
| lint_and_test: | |
| uses: ./.github/workflows/lint-and-test.yml | |
| deploy_to_stream_dist: | |
| needs: lint_and_test | |
| name: Deploy to xwp/stream-dist | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: write | |
| packages: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| tools: composer:v2 | |
| - name: Get Composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache Composer packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-php-${{ hashFiles( 'composer.lock' ) }} | |
| restore-keys: ${{ runner.os }}-php- | |
| - name: Install NPM dependencies | |
| run: npm install | |
| - name: Install Composer dependencies | |
| run: composer install --no-dev | |
| - name: Build | |
| run: npm run build | |
| - name: Setup environment | |
| run: | | |
| set -ex | |
| ROOT_DIR="$(git rev-parse --show-toplevel)" | |
| WORKING_BRANCH="$(git rev-parse --abbrev-ref HEAD)" | |
| SRC_DIR="$ROOT_DIR/source" | |
| DIST_DIR="$ROOT_DIR/dist" | |
| COMMIT_MESSAGE="$(git log -1 --oneline)" | |
| if [ "${{ github.event_name }}" = "release" ]; then | |
| # On a release event, GITHUB_REF is refs/tags/<tag>. Push the dist | |
| # commit to the branch the release targets (e.g. master) and create | |
| # the tag on top of it. | |
| DIST_BRANCH="${{ github.event.release.target_commitish }}" | |
| DIST_TAG="${GITHUB_REF#refs/tags/}" | |
| else | |
| # On a push event, GITHUB_REF is refs/heads/<branch>. Mirror the | |
| # branch to dist without tagging. | |
| DIST_BRANCH="${GITHUB_REF#refs/heads/}" | |
| DIST_TAG="" | |
| fi | |
| echo "ROOT_DIR=$ROOT_DIR" >> $GITHUB_ENV | |
| echo "WORKING_BRANCH=$WORKING_BRANCH" >> $GITHUB_ENV | |
| echo "SRC_DIR=$SRC_DIR" >> $GITHUB_ENV | |
| echo "DIST_DIR=$DIST_DIR" >> $GITHUB_ENV | |
| echo "DIST_BRANCH=$DIST_BRANCH" >> $GITHUB_ENV | |
| echo "DIST_TAG=$DIST_TAG" >> $GITHUB_ENV | |
| echo "COMMIT_MESSAGE=$COMMIT_MESSAGE" >> $GITHUB_ENV | |
| - name: Sync files locally | |
| run: | | |
| set -ex | |
| rm -rf "$SRC_DIR" | |
| rm -rf "$DIST_DIR" | |
| mkdir -p "$SRC_DIR" | |
| rsync -av --exclude-from=.distignore "$ROOT_DIR/" "$SRC_DIR/" | |
| env: | |
| ROOT_DIR: ${{ env.ROOT_DIR }} | |
| SRC_DIR: ${{ env.SRC_DIR }} | |
| DIST_DIR: ${{ env.DIST_DIR }} | |
| - name: Setup SSH deploy key | |
| uses: shimataro/ssh-key-action@v2 | |
| with: | |
| key: ${{ secrets.SSH_DEPLOY_KEY }} | |
| known_hosts: github.com | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name "XWP Deploy Bot" | |
| git config --global user.email "technology@xwp.co" | |
| - name: Deploy to xwp/stream-dist | |
| run: | | |
| set -ex | |
| export GIT_DIR="$DIST_DIR/.git" | |
| export GIT_WORK_TREE="$DIST_DIR" | |
| git clone --progress --verbose ${{ vars.DIST_REPO }} "$DIST_DIR/.git" | |
| git checkout -B "$DIST_BRANCH" | |
| # Use the release bundle as the work tree. | |
| export GIT_WORK_TREE="$SRC_DIR" | |
| git add --all | |
| git commit --allow-empty --message "$COMMIT_MESSAGE" | |
| if [ "${{ github.event_name }}" = "release" ]; then | |
| echo "Tagging a release: $DIST_TAG" | |
| git tag --force "$DIST_TAG" | |
| git push --force origin "$DIST_BRANCH" "refs/tags/$DIST_TAG" | |
| else | |
| git push --force origin "$DIST_BRANCH" | |
| fi | |
| env: | |
| DIST_DIR: ${{ env.DIST_DIR }} | |
| DIST_BRANCH: ${{ env.DIST_BRANCH }} | |
| DIST_TAG: ${{ env.DIST_TAG }} | |
| COMMIT_MESSAGE: ${{ env.COMMIT_MESSAGE }} |