Skip to content

Commit

Permalink
chore(release): 0.20.1 (#592)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu authored Jul 4, 2024
1 parent ab86a7d commit a8d9179
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
# and triggering of docker image builds in the apify-actor-docker repo.
deploy:
name: Publish to NPM
if: (github.ref == 'refs/heads/master' || github.event_name == 'release') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'docs:')
if: github.repository_owner == 'apify' && (github.ref == 'refs/heads/master' || github.event_name == 'release') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, 'docs:')
needs: [build_and_test, test_python_support, lint]
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -225,13 +225,13 @@ jobs:
run: |
git add .
git diff-index --quiet HEAD || git commit -m "[skip ci] update README with latest command reference"
git push origin master
git push origin HEAD:master
update_homebrew_formula:
name: Update Homebrew Formula
needs: [deploy]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
if: github.repository_owner == 'apify' && github.event_name == 'release' && github.event.action == 'published'
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apify-cli",
"version": "0.20.0",
"version": "0.20.1",
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit a8d9179

Please sign in to comment.