Skip to content

Commit

Permalink
chore: add debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
vesameskanen committed Aug 15, 2023
1 parent 7973d8d commit a8842ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/dev-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ jobs:
- name: Parse publish logs
run: |
{
echo "${{ steps.publish.outputs.publish-logs }}"
echo 'published-packages<<EOF' >> $GITHUB_OUTPUT
echo "${{ steps.publish.outputs.publish-logs }}" | grep -o -P '(Successfully published:).*' >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
Expand All @@ -263,7 +264,11 @@ jobs:
id: log-parse
- name: Send published packages to slack
if: steps.log-parse.outputs.published-packages != ''
run: ./.github/workflows/scripts/slack_message.sh
run: |
{
echo "${{ steps.publish.outputs.published-packages }}"
./.github/workflows/scripts/slack_message.sh
}
env:
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }}
SLACK_ACCESS_TOKEN: ${{ secrets.SLACK_ACCESS_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digitransit-component/digitransit-component-abtesting",
"version": "0.1.5",
"version": "0.1.6",
"description": "digitransit-component abtesting module",
"main": "index.js",
"files": [
Expand Down

0 comments on commit a8842ee

Please sign in to comment.