1.0.17 • Published 3 months ago

upload_github_release_assets_action v1.0.17

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Fork By action gh-release Fork By upload-artifact

npm install 
node-version 20.2.0

Usage

⬆️ Uploading release assets

You can configure a number of options for your GitHub release and all are optional.

A common case for GitHub releases is to upload your binary after its been validated and packaged. Use the with.files input to declare a newline-delimited list of glob expressions matching the files you wish to upload to GitHub releases. If you'd like you can just list the files by name directly.

Below is an example of uploading a single asset named *.zip

name: Main

on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Build
        run: |
          echo ${{ github.sha }} > Release.txt
          echo atest > atest.txt

      - name: Test-Upload
        run: cat Release.txt
      - name: Release build 
        uses: george012/upload_github_release_assets_action@latest
        with:
          path: ./build/release/*.txt
1.0.17

3 months ago

1.0.15

6 months ago

1.0.14

6 months ago

1.0.13

6 months ago

1.0.12

6 months ago

1.0.11

10 months ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago