Skip to content

Commit 6741a6a

Browse files
authored
Change tags for actor images to align with Apify SDK Node.js images (#54)
Apify SDK uses `latest` and `beta` tags, but this client used `stable` and `beta` tags. I've changed it so that this client uses the same tags as the Apify SDK (which is the correct way since `latest` has a special meaning in Docker repos).
1 parent d94c61e commit 6741a6a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- # Determine if this is a beta or latest release
8484
name: Determine release type
85-
run: echo "RELEASE_TYPE=$(if [ ${{ github.event_name }} = release ]; then echo stable; else echo beta; fi)" >> $GITHUB_ENV
85+
run: echo "RELEASE_TYPE=$(if [ ${{ github.event_name }} = release ]; then echo latest; else echo beta; fi)" >> $GITHUB_ENV
8686

8787
- # Check whether the released version is listed in CHANGELOG.md
8888
name: Check whether the released version is listed in the changelog

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Changelog
99
- replaced `base_url` with `api_url` in the client constructor
1010
to enable easier passing of the API server url from environment variables availabl to actors on the Apify platform
1111

12+
### Internal changes
13+
14+
- changed tags for actor images with this client on Docker Hub to be aligned with the Apify SDK Node.js images
15+
1216
[0.1.0](../../releases/tag/v0.1.0) - 2021-08-02
1317
-----------------------------------------------
1418

0 commit comments

Comments
 (0)