Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ permissions:
packages: write

jobs:
build:
name: docker
run:
name: build-docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ permissions:
contents: write

jobs:
build:
name: diplodoc
run:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/up-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ permissions:
contents: write

jobs:
up:
name: npm
run:
name: up-version
runs-on: ubuntu-latest
if: github.actor != 'github-actions[bot]'
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -24,6 +25,7 @@ jobs:
- name: up version
id: version
run: |
echo "actor: ${{ github.actor }}"
VERSION=$(npm version minor --no-commit-hooks --no-git-tag-version)
echo "version: ${VERSION}"
echo "version=${VERSION}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datalens-tech/docs",
"version": "0.21.0",
"version": "0.18.0",
"private": false,
"scripts": {
"build": "npx @diplodoc/cli --input ./docs --output ./build/opensource/docs --config ./.yfm-docs",
Expand Down