(NuGet) GitHub Packages Release #19
This file contains 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: (NuGet) GitHub Packages Release | |
on: | |
workflow_run: | |
workflows: [ "Build" ] | |
types: | |
- completed | |
jobs: | |
github_packages_release: | |
name: GitHub Packages Release | |
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event != 'pull_request' }} | |
runs-on: ubuntu-20.04 | |
env: | |
# GitHub Packages Feed settings | |
GITHUB_USER: ${{ github.repository_owner }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_FEED: https://nuget.pkg.github.com/${{ github.repository_owner }} | |
GITHUB_PACKAGES_OUTPUT: ${{ github.workspace }}/github_packages | |
# Project Setup | |
PROJECT_NAME: ${{ github.event.repository.name }} | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
fetch-depth: 0 | |
- name: Get version | |
shell: bash | |
run: | | |
tag_check=$(git describe --exact-match `git rev-parse HEAD` | head -1) | |
echo "VERSION=$tag_check" >> $GITHUB_ENV | |
- name: Download a single artifact | |
uses: aochmann/actions-download-artifact@1.0.2 | |
with: | |
name: nuget_${{ env.PROJECT_NAME }}.${{ env.VERSION }} | |
path: ${{ env.GITHUB_PACKAGES_OUTPUT }} | |
- name: Push to GitHub Feed | |
shell: bash | |
working-directory: ${{ env.GITHUB_PACKAGES_OUTPUT }} | |
run: | | |
for nugetFile in ./*.nupkg | |
do | |
curl -vX PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$nugetFile $GITHUB_FEED | |
done |