test file upload to release
This commit is contained in:
24
.github/workflows/release.yml
vendored
24
.github/workflows/release.yml
vendored
@@ -17,27 +17,3 @@ jobs:
|
|||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
name: Netdisco ${{ steps.get_tag.outputs.TAGVALUE }}
|
name: Netdisco ${{ steps.get_tag.outputs.TAGVALUE }}
|
||||||
- name: get upload url 2
|
|
||||||
run: echo ${{ steps.create_release.outputs.upload_url }}
|
|
||||||
- name: get upload url
|
|
||||||
run: echo ${{ steps.create_release.outputs.upload_url }} > uploadurl.txt
|
|
||||||
- name: Setup tmate session
|
|
||||||
uses: mxschmitt/action-tmate@v3
|
|
||||||
#jobs:
|
|
||||||
# build:
|
|
||||||
# runs-on: ubuntu-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@master
|
|
||||||
# - name: Get the Tag
|
|
||||||
# id: get_tag
|
|
||||||
# run: echo ::set-output name=TAGVALUE::${GITHUB_REF#refs/tags/}
|
|
||||||
# - name: Netdisco Release
|
|
||||||
# env:
|
|
||||||
# GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
||||||
# run: |
|
|
||||||
# curl -sL -X POST -H "Content-Type: application/json" \
|
|
||||||
# -u "$GITHUB_TOKEN" \
|
|
||||||
# --data "{\"tag_name\": \"${{ steps.get_tag.outputs.TAGVALUE }}\", \
|
|
||||||
# \"target_commitish\": \"master\", \
|
|
||||||
# \"name\": \"Netdisco ${{ steps.get_tag.outputs.TAGVALUE }}\"}" \
|
|
||||||
# https://api.github.com/repos/netdisco/netdisco/releases
|
|
||||||
|
|||||||
23
.github/workflows/uploadtarball.yml
vendored
Normal file
23
.github/workflows/uploadtarball.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: Upload Renamed Tarball
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: ['published']
|
||||||
|
jobs:
|
||||||
|
upload_renamed_tarball:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Get the Tag
|
||||||
|
id: get_tag
|
||||||
|
run: echo ::set-output name=TAGVALUE::${GITHUB_REF#refs/tags/}
|
||||||
|
- name: Download tarball
|
||||||
|
run: curl -O https://github.com/netdisco/netdisco/archive/refs/tags/${{ steps.get_tag.outputs.TAGVALUE }}.tar.gz
|
||||||
|
- name: Rename tarball
|
||||||
|
run: mv ${{ steps.get_tag.outputs.TAGVALUE }}.tar.gz netdisco-mibs.tar.gz
|
||||||
|
- name: Upload tarball
|
||||||
|
uses: JasonEtco/upload-to-release@master
|
||||||
|
with:
|
||||||
|
args: netdisco-mibs.tar.gz application/gzip
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Reference in New Issue
Block a user