Skip to content

Commit

Permalink
add publish infra
Browse files Browse the repository at this point in the history
  • Loading branch information
IMax153 committed Oct 26, 2024
1 parent b95d193 commit 3e802f7
Show file tree
Hide file tree
Showing 20 changed files with 200,316 additions and 193,695 deletions.
16 changes: 16 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": [
"@changesets/changelog-github",
{
"repo": "Effect-TS/monaco-editor"
}
],
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/dirty-socks-brush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@effect/monaco-editor': patch
---

initial forked version of monaco-editor for the Effect Playground
57 changes: 0 additions & 57 deletions .github/ISSUE_TEMPLATE/1_bug_report.yaml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/2_feature_request.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/ISSUE_TEMPLATE/3_other.md

This file was deleted.

5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/publish-failure-issue-template.md

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Check
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions: {}

jobs:
build:
if: github.repository_owner == 'Effect-Ts'
name: Build
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write
id-token: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/setup
- run: npm run build-monaco-editor
- run: npm run import-typescript
- run: npm run build-monaco-editor
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76 changes: 0 additions & 76 deletions .github/workflows/ci.yml

This file was deleted.

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: Release
on:
push:
branches: [main]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

permissions: {}

jobs:
release:
if: github.repository_owner == 'Effect-Ts'
name: Release
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write
id-token: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/setup
- name: Create Release Pull Request or Publish
uses: changesets/action@v1
with:
version: npm changeset-version
publish: npm changeset-publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
66 changes: 0 additions & 66 deletions .github/workflows/website.yml

This file was deleted.

File renamed without changes.
27 changes: 27 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3e802f7

Please sign in to comment.