Last active
July 5, 2021 11:58
-
-
Save paullessing/d706c8af51faca68c6ba0f9f9bae4e4b to your computer and use it in GitHub Desktop.
GitHub Actions: Publishing bundled packages with TypeScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Releases | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn install --frozen-lockfile | |
- run: yarn pack --filename=package.tgz | |
- uses: Klemensas/action-autotag@stable | |
id: update_tag | |
with: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
tag_prefix: "v" | |
- name: Create Release | |
if: steps.update_tag.outputs.tagname | |
uses: actions/create-release@v1 | |
id: create_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ steps.update_tag.outputs.tagname }} | |
release_name: Release ${{ steps.update_tag.outputs.tagname }} | |
draft: false # Default value, but nice to set explicitly | |
prerelease: false # Default value, but nice to set explicitly | |
- name: Upload Release Asset | |
if: steps.update_tag.outputs.tagname | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./package.tgz | |
asset_name: package.tgz | |
asset_content_type: application/tgz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Releases | |
on: | |
push: | |
tags: | |
- 'v*' # Push events to matching v*, e.g. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- run: yarn install --frozen-lockfile | |
- run: yarn pack --filename=package.tgz | |
- name: Create Release | |
uses: actions/create-release@v1 | |
id: create_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false # Default value, but nice to set explicitly | |
prerelease: false # Default value, but nice to set explicitly | |
- name: Upload Release Asset | |
if: steps.update_tag.outputs.tagname | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./package.tgz | |
asset_name: package.tgz | |
asset_content_type: application/tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment