Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aabedraba committed Oct 27, 2024
1 parent 9bc02cd commit 332ac92
Showing 1 changed file with 20 additions and 50 deletions.
70 changes: 20 additions & 50 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,74 +5,44 @@ on:
branches:
- master

# Add this at the top level to ensure we have proper permissions
permissions:
contents: write
packages: write # Add this if you're using GitHub Packages
id-token: write # Add this for better security with secrets

jobs:
publish_packages:
runs-on: ubuntu-latest
environment: prod

steps:
- uses: actions/checkout@v4

- name: Verify Secret Availability
run: |
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
echo "NPM_TOKEN secret is not set"
exit 1
else
echo "NPM_TOKEN secret is available"
fi
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
registry-url: "https://registry.npmjs.org"

- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: "NPM Identity"
- name: Configure NPM Authentication
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
BLA: as
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > .npmrc
cat .npmrc
echo ${{ secrets.NPM_TOKEN }}
echo $BLA
# - name: Install dependencies
# run: npm ci
# - name: Run tests
# run: npx lerna run test:e2e --since master
# - name: Build packages
# run: npx lerna run build:packages --since master
# - name: Publish packages
# run: npx lerna publish patch --no-verify-access --yes

# rmw-shell-demo:
# if: ${{ always() }}
# needs: [publish_packages]
# runs-on: ubuntu-latest
# environment: prod
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: "20"
# - name: git config
# run: |
# git config user.name "${GITHUB_ACTOR}"
# git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
# - name: install-rmw-shell
# run: npm create @ecronix/rmw-shell@latest demo-app
# - name: install firebase functins dependencies
# run: npm i
# working-directory: ./demo-app/firebase/functions
# - name: run build
# run: |
# npm run build
# env:
# CI: false
# working-directory: ./demo-app
# - name: Install firebase tools
# run: npm i -g firebase-tools
# - name: Deploy
# run: |
# firebase use prod
# firebase deploy --only hosting --token $FIREBASE_TOKEN
# working-directory: ./demo-app
# env:
# FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}

0 comments on commit 332ac92

Please sign in to comment.