Skip to content

Commit 53c1c0b

Browse files
author
Sankeerth
authored
Merge pull request #125 from rudderlabs/release/v1.4.10
chore(release): pull release/v1.4.10 into main
2 parents 335db4d + b518019 commit 53c1c0b

6 files changed

+44
-5
lines changed
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Build Artifacts for PRs
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
jobs:
11+
generate-tag:
12+
name: Generate docker tag
13+
runs-on: ubuntu-latest
14+
outputs:
15+
image_tag: ${{steps.gen_tag_names.outputs.tag_name}}
16+
steps:
17+
- name: Checkout
18+
uses: actions/[email protected]
19+
with:
20+
fetch-depth: 1
21+
22+
# Replace problematic characters in branch name (like '/') with safe characters (like '.')
23+
- name: Generate Tag Names
24+
id: gen_tag_names
25+
run: |
26+
tag_name=$(echo ${{ github.head_ref }} | tr "/" .)
27+
echo "Tag Name: $tag_name"
28+
echo "tag_name=$tag_name" >> $GITHUB_OUTPUT
29+
build:
30+
name: Build Shopify Tracker Docker Image
31+
uses: ./.github/workflows/build-and-push-docker-image.yml
32+
needs: [generate-tag]
33+
with:
34+
img_tag: ${{ needs.generate-tag.outputs.image_tag }}
35+
secrets:
36+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
37+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/draft-new-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
# Only allow release stakeholders to initiate releases
11-
if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'utsabc' || github.actor == 'shrouti1507') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'utsabc' || github.triggering_actor == 'shrouti1507')
11+
if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'utsabc' || github.actor == 'shrouti1507') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'utsabc' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'sanpj2292')
1212
steps:
1313
- name: Checkout
1414
uses: actions/[email protected]

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [1.4.10](https://github.com/rudderlabs/rudder-shopify-tracker/compare/v1.4.9...v1.4.10) (2024-03-26)
6+
57
### [1.4.9](https://github.com/rudderlabs/rudder-shopify-tracker/compare/v1.4.8...v1.4.9) (2024-01-18)
68

79
### [1.4.8](https://github.com/rudderlabs/rudder-shopify-tracker/compare/v1.4.7...v1.4.8) (2024-01-15)

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY package*.json ./
1212
COPY . .
1313
RUN rm -rf /usr/src/app/node_modules
1414

15-
RUN npm install --only=prod
15+
RUN npm ci --no-audit --cache .npm
1616
# If you are building your code for production
1717
# RUN npm ci --only=production
1818

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rudderstack-shopify-tracker",
3-
"version": "1.4.9",
3+
"version": "1.4.10",
44
"description": "Tracks client-side events on Shopify stores",
55
"main": "src/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)