Skip to content

Commit

Permalink
TEMP: Add new workflow for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
floehopper committed Jan 20, 2025
1 parent 880665c commit a892244
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches: [experience-cs]
workflow_dispatch:
permissions:
contents: write
packages: write
jobs:
foo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@26961cf329f22f6837d5f54c3efd76b480300ace # v4
- run: |
mkdir -p build
mkdir -p dist
- name: Publish to GitHub Packages
if: github.ref == 'refs/heads/experience-cs'
run: |
RELEASE_VERSION="0.1.0-raspberrypifoundation.$(date +'%Y%m%d%H%M%S')"
npm version --no-git-tag-version $RELEASE_VERSION
npm publish --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a892244

Please sign in to comment.