Skip to content

chore(deps-dev): Bump @deck.gl/mapbox from 8.9.35 to 9.0.4 #1376

chore(deps-dev): Bump @deck.gl/mapbox from 8.9.35 to 9.0.4

chore(deps-dev): Bump @deck.gl/mapbox from 8.9.35 to 9.0.4 #1376

Workflow file for this run

name: 'Ship js trigger'
on:
pull_request:
types:
- closed
permissions:
contents: write
jobs:
build:
name: Release
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v')
steps:
- name: Checkout code πŸ›Ž
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Setup GitHub Actor
run: |
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
- name: Setup node environment πŸ“¦
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
check-latest: true
cache: 'npm'
- name: Install dependencies πŸš€
run: npm ci --prefer-offline --no-audit
- name: Trigger a release πŸ₯³
run: npx shipjs trigger
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}