Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
aae925f
chore: add a github action for publishing lerna from-package (#2518)
maribethb May 14, 2025
8c1278e
chore: fix workflow name
maribethb May 14, 2025
962e6a7
fix: Fix clean:node script
cpcallen May 6, 2025
d83ea84
chore(deps): Update blockly to v12.0.0-beta.4
cpcallen May 6, 2025
20ab15a
fix(FieldColour): Fix type of FieldColour.prototype.isFullBlockField
cpcallen May 6, 2025
55e188c
fix(FieldMultilineInput): Use string literal instead of Field.NBSP
cpcallen May 7, 2025
bf2878c
fix(FieldGridDropdown): Fix type error caused by separators
cpcallen May 7, 2025
78badf5
chore(deps): Update blockly to v12.0.0-beta.5
cpcallen May 8, 2025
6e9d3fe
fix(fields): Implement getClass method
cpcallen May 8, 2025
43bdfab
fix(FieldGridDropdown): Handle presence of HTMLElement in MenuOptions
cpcallen May 8, 2025
1d80511
chore: Update to v12 beta 6.
gonfunko May 14, 2025
452051e
fix: Fix the field-grid-dropdown tests.
gonfunko May 14, 2025
6bd3916
fix: Fix shadow-block-converter tests.
gonfunko May 14, 2025
bf44961
fix: Remove use of deleted `Block.setEnabled()`.
gonfunko May 14, 2025
a060be7
Revert "fix(fields): Implement getClass method"
gonfunko May 14, 2025
144b6d0
Revert "fix: Add `getClass()` to `FieldColour`. (#2506)"
gonfunko May 14, 2025
8370d9c
chore: skip shadow block tests that need jsdom work
maribethb May 14, 2025
9dc3124
chore: try updating the package-lock, unskip tests
maribethb May 14, 2025
539ae4f
revert: "fix(FieldMultilineInput): Use string literal instead of Fiel…
maribethb May 14, 2025
49d9d11
chore: skip shadow block converter tests
maribethb May 14, 2025
ad8ce93
chore: Merge branch 'master' into beta7
maribethb May 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions .github/workflows/publish_from_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# This workflow can be manually triggered to publish all of the plugins
# that have a version in their package.json that is newer than what
# is available in the npm registry. This is useful if lerna publishing
# failed after a package had its version updated on github but before
# that version was published to npm.

name: publish unpublished plugins
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
name: publish unpublished plugins
name: Publish unpublished plugins

For consistency.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was done from merging in master, I don't want to muddy up actual changes into what should be a merge commit. Anyway, the publish action was already lower case so it's not really any more inconsistent than publish already is


on:
workflow_dispatch: # Manually trigger. Colon is required.

permissions:
contents: write # For checkout and tag.
packages: write # For publish.

jobs:
publish:
runs-on: ubuntu-latest
# Don't try to publish from a fork of google/blockly-samples.
if: ${{ github.repository_owner == 'google' }}

# Environment specific to releasing so we can isolate the npm token.
environment: release

steps:
- name: Checkout
uses: actions/checkout@v3
# fetch all tags and commits so that lerna can version appropriately
with:
fetch-depth: 0
ref: 'master'

# This uses a reverse-engineered email for the github actions bot. See
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
- name: Git Identity
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '<41898282+github-actions[bot]@users.noreply.github.com'

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Configure npm
run: npm config set //wombat-dressing-room.appspot.com/:_authToken=$NODE_AUTH_TOKEN
env:
NODE_AUTH_TOKEN: ${{ secrets.RELEASE_BACKED_NPM_TOKEN }}

- name: NPM install
# Use CI so that we don't update dependencies in this step.
run: npm ci

- name: Build
run: npm run build

- name: Test
run: npm run test

- name: Publish from-package
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: cd plugins && npx lerna publish from-package --yes

update-gh-pages:
name: Update GitHub Pages
# Call the Update gh-pages workflow only if publishing succeeds
needs: [publish]
# Don't try to auto-update if on a fork of google/blockly-samples.
if: ${{ github.repository_owner == 'google' }}
uses: ./.github/workflows/update_gh_pages.yml
Loading
Loading