@vtex/faststore-plugin-buyer-portal 1.1.114 → 1.1.116-experimental.20251010183930
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# This Action runs on experimental branch and publishes an experimental version to npm
|
|
2
|
+
name: CD Experimental
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- experimental
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
name: BuyerPortal Experimental
|
|
12
|
+
timeout-minutes: 15
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Check out code
|
|
17
|
+
uses: actions/checkout@v4
|
|
18
|
+
with:
|
|
19
|
+
fetch-depth: 2
|
|
20
|
+
|
|
21
|
+
- name: Setup Node.js environment
|
|
22
|
+
uses: actions/setup-node@v4
|
|
23
|
+
with:
|
|
24
|
+
node-version: 20
|
|
25
|
+
cache: "yarn"
|
|
26
|
+
registry-url: "https://registry.npmjs.org"
|
|
27
|
+
|
|
28
|
+
- name: Configure CI Git User
|
|
29
|
+
run: |
|
|
30
|
+
git config user.name vtexgithubbot
|
|
31
|
+
git config user.email vtexgithubbot@github.com
|
|
32
|
+
|
|
33
|
+
- name: Install dependencies
|
|
34
|
+
run: yarn
|
|
35
|
+
|
|
36
|
+
- name: Get current version
|
|
37
|
+
id: get_version
|
|
38
|
+
run: |
|
|
39
|
+
CURRENT_VERSION=$(node -p "require('./package.json').version")
|
|
40
|
+
echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT
|
|
41
|
+
|
|
42
|
+
- name: Generate experimental version
|
|
43
|
+
id: generate_version
|
|
44
|
+
run: |
|
|
45
|
+
# Extract base version (remove any existing prerelease suffix)
|
|
46
|
+
BASE_VERSION=$(echo "${{ steps.get_version.outputs.current_version }}" | sed -E 's/(-.*)?$//')
|
|
47
|
+
# Generate timestamp-based identifier
|
|
48
|
+
TIMESTAMP=$(date +%Y%m%d%H%M%S)
|
|
49
|
+
# Create experimental version
|
|
50
|
+
EXPERIMENTAL_VERSION="${BASE_VERSION}-experimental.${TIMESTAMP}"
|
|
51
|
+
echo "experimental_version=$EXPERIMENTAL_VERSION" >> $GITHUB_OUTPUT
|
|
52
|
+
echo "Publishing experimental version: $EXPERIMENTAL_VERSION"
|
|
53
|
+
|
|
54
|
+
- name: Update package.json version
|
|
55
|
+
run: |
|
|
56
|
+
npm version ${{ steps.generate_version.outputs.experimental_version }} --no-git-tag-version
|
|
57
|
+
|
|
58
|
+
- name: Publish experimental version
|
|
59
|
+
run: yarn publish --non-interactive --tag experimental
|
|
60
|
+
env:
|
|
61
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
62
|
+
|
|
63
|
+
- name: Push changes and tags
|
|
64
|
+
run: |
|
|
65
|
+
git config user.email "vtexgithubbot@github.com"
|
|
66
|
+
git config user.name "vtexgithubbot"
|
|
67
|
+
git add package.json
|
|
68
|
+
git commit -m "chore: publish experimental version ${{ steps.generate_version.outputs.experimental_version }}" || echo "No changes to commit"
|
|
69
|
+
git push origin experimental || echo "No changes to push"
|
|
70
|
+
|