Skip to content

Commit 0061bfa

Browse files
committed
chore: test workflow by running it on push
1 parent b7b33a7 commit 0061bfa

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/release-generic-actors.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Build generic Actors
22

33
on:
4+
push:
5+
branches:
6+
- chore/automatic-actor-build
47
workflow_dispatch:
58
inputs:
69
web-scraper:
@@ -112,9 +115,9 @@ jobs:
112115
fi
113116
114117
- name: Build ${{ matrix.settings.actor }}
115-
uses: apify/push-actor-action@master
116-
with:
117-
token: ${{ secrets.APIFY_ACTOR_BUILD_TOKEN }}
118-
build-tag: ${{ steps.calculate-versions.outputs.build-tag }}
119-
version: ${{ steps.calculate-versions.outputs.version }}
120-
working-directory: packages/actor-scraper/${{ matrix.settings.actor }}
118+
run: |
119+
echo "Building ${{ matrix.settings.actor }}!"
120+
echo "Channel: ${{ github.event.inputs.build-channel }}"
121+
echo "Version: ${{ steps.calculate-versions.outputs.version }}"
122+
echo "Build tag: ${{ steps.calculate-versions.outputs.build-tag }}"
123+
echo "Working directory: packages/actor-scraper/${{ matrix.settings.actor }}"

0 commit comments

Comments
 (0)