-
Notifications
You must be signed in to change notification settings - Fork 1
Change release to trigger on version change #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: release | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
npm-publish: | ||
name: Publish to NPM & GitHub Package Registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: main | ||
# limit releases to version changes - https://github.com/EndBug/version-check | ||
- name: Check version changes | ||
uses: EndBug/version-check@v1 | ||
id: version_check | ||
with: | ||
file-url: https://unpkg.com/@grafana/aws-sdk@latest/package.json | ||
static-checking: localIsNew | ||
|
||
- name: Version update detected | ||
if: steps.version_check.outputs.changed == 'true' | ||
run: 'echo "Version change found! New version: ${{ steps.version_check.outputs.version }} (${{ steps.version_check.outputs.type }})"' | ||
|
||
- name: Setup .npmrc file for NPM registry | ||
if: steps.version_check.outputs.changed == 'true' | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install dependencies | ||
if: steps.version_check.outputs.changed == 'true' | ||
run: yarn | ||
|
||
- name: Build library | ||
if: steps.version_check.outputs.changed == 'true' | ||
run: yarn build | ||
|
||
- name: Publish package to NPM | ||
if: steps.version_check.outputs.changed == 'true' | ||
run: npm publish --access public --scope grafana | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Setup .npmrc file for GitHub Packages | ||
if: steps.version_check.outputs.changed == 'true' | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
registry-url: 'https://npm.pkg.github.com' | ||
scope: '@grafana' | ||
|
||
- name: Publish package to Github Packages | ||
if: steps.version_check.outputs.changed == 'true' | ||
run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i don't actually see a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The GITHUB_TOKEN is a temporary secret that is created at runtime and has certain limited permissions, so we don't need to explicitly add it. I think this should be ok without giving it any specific permissions for this action🤞🏻 |
||
create-github-release: | ||
name: Create GitHub Release | ||
runs-on: ubuntu-latest | ||
needs: npm-publish | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Create Release Notes | ||
uses: actions/[email protected] | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
await github.request(`POST /repos/${{ github.repository }}/releases`, { | ||
tag_name: "${{ github.ref }}", | ||
generate_release_notes: true | ||
}); |
Uh oh!
There was an error while loading. Please reload this page.