Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package publishing #4

Merged
merged 34 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
79 changes: 79 additions & 0 deletions .github/workflows/release-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Release and publish

on:
push:
branches: [main]

jobs:
release-and-publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: .
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
registry-url: 'https://registry.npmjs.org'
- name: Get last release
run: |
COMMIT_NAME=$(git log -n 1 --pretty=format:%s)

LAST_RELEASE_VERSION=$(curl -L https://api.github.com/repos/$GITHUB_REPOSITORY/releases | jq -r '.|=sort_by(.name|ltrimstr("v")|split(".")|map(tonumber)|[.[0],.[1],-.[2]])|.[-1].name' | sed 's|v||')
echo "Last release version: ${LAST_RELEASE_VERSION}"

MAIN_COMMIT=$(git rev-parse origin/main)
echo "Main commit: ${MAIN_COMMIT}"
LAST_RELEASE_BRANCH="release-${LAST_RELEASE_VERSION}"
LAST_RELEASE_COMMIT=$(git rev-parse "origin/$LAST_RELEASE_BRANCH")
echo "Last release commit: ${LAST_RELEASE_COMMIT}"

echo "COMMIT_NAME=$COMMIT_NAME" >> "$GITHUB_ENV"
echo "LAST_RELEASE_VERSION=$LAST_RELEASE_VERSION" >> "$GITHUB_ENV"
- name: Make new release version number
run: |
npm version "$LAST_RELEASE_VERSION" --no-git-tag-version --allow-same-version

TAG_NEW_VERSION=$(npm version minor --no-git-tag-version --allow-same-version)
NEW_VERSION=$(echo $TAG_NEW_VERSION | sed 's|v||')

echo "NEW_VERSION=$NEW_VERSION" >> "$GITHUB_ENV"
echo "TAG_NEW_VERSION=$TAG_NEW_VERSION" >> "$GITHUB_ENV"
- name: Create new release branch
run: |
NEW_BRANCH="release-$NEW_VERSION"

git checkout -b "$NEW_BRANCH"
echo "Created new release branch: $NEW_BRANCH"

echo "NEW_BRANCH=$NEW_BRANCH" >> "$GITHUB_ENV"
- name: Commit package version
run: |
git config user.email "" && git config user.name "GitHub Release"
git add package.json && git add package-lock.json && git commit -am "Bump version to $NEW_VERSION [release]"
git push --set-upstream origin "$NEW_BRANCH"
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TAG_NEW_VERSION }}
release_name: ${{ env.TAG_NEW_VERSION }}
commitish: ${{ env.NEW_BRANCH }}
body: ${{ env.COMMIT_NAME }}
draft: false
prerelease: false
- name: Install Packages
run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
35 changes: 0 additions & 35 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Verify

on:
push:
branches: [main]
pull_request:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "@datalens-tech/ui-sandbox-modules",
"version": "0.0.2",
"version": "0.0.1",
"description": "UI-sandbox modules",
"repository": "https://github.com/datalens-tech/ui-sandbox-modules.git",
"author": "DataLens Team <https://github.com/datalens-tech>",
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && NODE_OPTIONS=--max_old_space_size=4096 webpack -c webpack.config.js",
"prepublishOnly": "npm run build && npm pkg delete engines"
Expand All @@ -18,8 +21,5 @@
"npm": ">= 9",
"yarn": "Please use npm instead of yarn to install dependencies",
"pnpm": "Please use npm instead of pnpm to install dependencies"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}