Skip to content

chore: devcontainer updateContentCommand #16

chore: devcontainer updateContentCommand

chore: devcontainer updateContentCommand #16

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Release"
on:
push:
branches:
- main
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
if: ${{ github.repository == 'unlike-ltd/github-actions' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Setup Node.js Pnpm & install dependencies
uses: ./setup-pnpm
with:
node-version: 18.x
- name: Create Release Pull Request
id: changesets
uses: changesets/action@v1.4.5
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}