Skip to content

Commit a7df7a4

Browse files
committed
build: try to fix release pipeline
1 parent ef40ed3 commit a7df7a4

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
release:
8282
name: "Bump ${{ inputs.package }}: ${{ inputs.version }} version (${{ inputs.custom_version || 'n/a' }} custom version)"
8383
if: (!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'docs:'))
84-
needs: build_and_test
84+
# needs: build_and_test # TODO uncomment once releasing works as expected
8585
runs-on: ubuntu-latest
8686

8787
steps:
@@ -149,9 +149,8 @@ jobs:
149149
- name: Add all other changes to the release commit and push
150150
run: |
151151
git add .
152-
153-
git commit --amend --no-edit
154-
git push -f
152+
git commit -m 'chore(release): update internal dependencies [skip ci]'
153+
git push
155154
env:
156155
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
157156
GIT_USER: "noreply@apify.com:${{ secrets.GH_TOKEN }}"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/apify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apify",
3-
"version": "3.1.3",
3+
"version": "3.1.1",
44
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
55
"engines": {
66
"node": ">=16.0.0"

0 commit comments

Comments
 (0)