svf-lib 1.0.2251 → 1.0.2253

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.
@@ -19,22 +19,19 @@ jobs:
19
19
  npm publish
20
20
  env:
21
21
  NODE_AUTH_TOKEN: ${{secrets.npm_token}}
22
+
22
23
  trigger-svf-python:
23
24
  if: github.event_name == 'push' # Only run on push events
24
25
  needs: build
25
26
  runs-on: ubuntu-latest
26
27
  steps:
27
28
  - name: Trigger SVF-Python workflow
28
- uses: actions/github-script@v7
29
- with:
30
- github-token: ${{ secrets.WORKFLOW_PAT }}
31
- script: |
32
- await github.rest.actions.createWorkflowDispatch({
33
- owner: 'SVF-tools',
34
- repo: 'SVF-Python',
35
- workflow_id: 'release.yml',
36
- ref: 'main',
37
- inputs: {
38
- triggered_by: 'SVF-npm'
39
- }
40
- })
29
+ run: |
30
+ git clone https://x-access-token:${GITHUB_TOKEN}@github.com/SVF-tools/SVF-Python.git
31
+ cd SVF-Python
32
+ git config user.name "github-actions[bot]"
33
+ git config user.email "github-actions[bot]@users.noreply.github.com"
34
+ git commit --allow-empty -m "trigger: new version of SVF-npm published"
35
+ git push
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.2251",
3
+ "version": "1.0.2253",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {