Skip to content

Commit

Permalink
alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
magicjar committed Nov 4, 2021
1 parent 8b0d1dd commit ebeb79a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Github Packages Publish

name: UPM Publish CI

on:
release:
types: [published]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
with:
# "ref" specifies the branch to check out.
# "github.event.release.target_commitish" is a global variable and specifies the branch the release targeted
ref: ${{ github.event.release.target_commitish }}
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.PAT_GA }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.agraris.core",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"displayName": "Agraris Core",
"description": "Agraris tools core components. Intended for internal use.",
"unity": "2019.3",
Expand Down

0 comments on commit ebeb79a

Please sign in to comment.