Skip to content

Commit

Permalink
Martin-ui packaging issue
Browse files Browse the repository at this point in the history
Seems we still have a packaging issue - npm saves files outside the build dir
  • Loading branch information
nyurik committed Feb 23, 2025
1 parent 9f18455 commit ccf7802
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Packaging and release

# For now this is only testing that packaging will be possible in the future

on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- 'demo/**'
- 'docs/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'demo/**'
- 'docs/**'
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-02-22
- name: Test packaging
run: cargo +nightly publish --workspace -Z package-workspace --dry-run

0 comments on commit ccf7802

Please sign in to comment.