summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2021-11-08 16:24:10 +0100
committerPierre Ossman <ossman@cendio.se>2021-11-08 16:36:40 +0100
commit303e5ef87b5be1ff93659399ad939df7e31ea7b2 (patch)
tree649312d1dc0c1515dd8609fc9676ea1f2e806e77
parent2c48df45605f7429ea30eeffd0acb0e23e10f2dc (diff)
downloadnovnc-303e5ef87b5be1ff93659399ad939df7e31ea7b2.tar.gz
Publish development builds to npm and snap
Gives us early warnings about problems, and allows people to test any committed version.
-rw-r--r--.github/workflows/deploy.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 09bea6a..48cb031 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -11,6 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
+ - run: |
+ GITREV=$(git rev-parse --short HEAD)
+ echo $GITREV
+ sed -i "s/^\(.*\"version\".*\)\"\([^\"]\+\)\"\(.*\)\$/\1\"\2-g$GITREV\"\3/" package.json
+ if: ${{ github.event_name == 'push' && github.event.ref == 'ref/heads/master' }}
- uses: actions/setup-node@v1
with:
# Needs to be explicitly specified for auth to work
@@ -28,11 +33,20 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ github.event_name == 'release' && github.event.release.prerelease }}
+ - run: npm publish --access public --tag dev
+ env:
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
+ if: ${{ github.event_name == 'push' && github.event.ref == 'ref/heads/master' }}
snap:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
+ GITREV=$(git rev-parse --short HEAD)
+ echo $GITREV
+ sed -i "s/^\(.*\"version\".*\)\"\([^\"]\+\)\"\(.*\)\$/\1\"\2-g$GITREV\"\3/" package.json
+ if: ${{ github.event_name == 'push' && github.event.ref == 'ref/heads/master' }}
+ - run: |
VERSION=$(grep '"version"' package.json | cut -d '"' -f 4)
echo $VERSION
sed -i "s/@VERSION@/$VERSION/g" snap/snapcraft.yaml
@@ -54,3 +68,9 @@ jobs:
snap: ${{ steps.snapcraft.outputs.snap }}
release: beta
if: ${{ github.event_name == 'release' && github.event.release.prerelease }}
+ - uses: snapcore/action-publish@v1
+ with:
+ store_login: ${{ secrets.SNAPCRAFT_LOGIN }}
+ snap: ${{ steps.snapcraft.outputs.snap }}
+ release: edge
+ if: ${{ github.event_name == 'push' && github.event.ref == 'ref/heads/master' }}