mirror of
				https://github.com/softprops/action-gh-release.git
				synced 2025-11-03 13:19:25 +00:00 
			
		
		
		
	Compare commits
	
		
			6 Commits
		
	
	
		
			v0.1.5
			...
			ncc-packag
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					e6a400341a | ||
| 
						 | 
					5733db0089 | ||
| 
						 | 
					7060560593 | ||
| 
						 | 
					7b2fd2c223 | ||
| 
						 | 
					e7bba17971 | ||
| 
						 | 
					03caddd29a | 
@@ -1,9 +1,5 @@
 | 
			
		||||
## 0.1.4
 | 
			
		||||
 | 
			
		||||
* Added support for updating releases body [#36](https://github.com/softprops/action-gh-release/pull/36)
 | 
			
		||||
 | 
			
		||||
## 0.1.4
 | 
			
		||||
 | 
			
		||||
* Steps can now access the url of releases with the `url` output of this Action [#28](https://github.com/softprops/action-gh-release/pull/28)
 | 
			
		||||
* Added basic GitHub API retry support to manage API turbulance [#26](https://github.com/softprops/action-gh-release/pull/26)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										12
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								README.md
									
									
									
									
									
								
							@@ -43,7 +43,7 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        uses: actions/checkout@v1
 | 
			
		||||
      - name: Release
 | 
			
		||||
        uses: softprops/action-gh-release@v1
 | 
			
		||||
        if: startsWith(github.ref, 'refs/tags/')
 | 
			
		||||
@@ -66,7 +66,7 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        uses: actions/checkout@v1
 | 
			
		||||
      - name: Release
 | 
			
		||||
        uses: softprops/action-gh-release@v1
 | 
			
		||||
        env:
 | 
			
		||||
@@ -94,7 +94,7 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        uses: actions/checkout@v1
 | 
			
		||||
      - name: Build
 | 
			
		||||
        run: echo ${{ github.sha }} > Release.txt
 | 
			
		||||
      - name: Test
 | 
			
		||||
@@ -120,7 +120,7 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        uses: actions/checkout@v1
 | 
			
		||||
      - name: Build
 | 
			
		||||
        run: echo ${{ github.sha }} > Release.txt
 | 
			
		||||
      - name: Test
 | 
			
		||||
@@ -154,7 +154,7 @@ jobs:
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v2
 | 
			
		||||
        uses: actions/checkout@v1
 | 
			
		||||
      - name: Generate Changelog
 | 
			
		||||
        run: echo "# Good things have arrived" > ${{ github.workflow }}-CHANGELOG.txt
 | 
			
		||||
      - name: Release
 | 
			
		||||
@@ -192,6 +192,8 @@ The following outputs can be accessed via `${{ steps.<step-id>.outputs }}` from
 | 
			
		||||
| `url`       | String  | Github.com URL for the release                                  |
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
#### environment variables
 | 
			
		||||
 | 
			
		||||
The following are *required* as `step.env` keys
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "action-gh-release",
 | 
			
		||||
  "version": "0.1.5",
 | 
			
		||||
  "version": "0.1.4",
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "description": "GitHub Action for creating GitHub Releases",
 | 
			
		||||
  "main": "lib/main.js",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user