-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.04 KB
/
https-npm-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: HTTPS NPM Publish
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- run: free -m
- name: Harden Runner
uses: h0x0er/harden-runner@debug2
with:
disable-sudo: false
egress-policy: audit
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
# - uses: actions/setup-node@v3
# with:
# node-version: '20.x'
# registry-url: 'https://npm.pkg.github.com'
# # Defaults to the user or organization that owns the workflow file
# scope: '@h0x0er'
- name: eCapture Memory
if: always()
run: sudo pmap -x `pidof ecapture`
- run: free -m
- run: pidof ecapture
- run: cd npm-package && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Install pkg
# if: always()
# run: cd npm-package && npm install @h0x0er/hello-world