diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e50930..0476faa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,6 +4,11 @@ on: push: pull_request: +env: + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + DOTNET_NOLOGO: true + DOTNET_CLI_TELEMETRY_OPTOUT: true + jobs: pack: runs-on: windows-latest @@ -48,6 +53,11 @@ jobs: name: SoundCloudDownloader path: SoundCloudDownloader/ + - name: Create package + # Change into the artifacts directory to avoid including the directory itself in the zip archive + working-directory: SoundCloudDownloader/ + run: zip -r ../SoundCloudDownloader.zip . + - name: Checkout uses: actions/checkout@v3 @@ -67,11 +77,6 @@ jobs: echo "$TAG_MESSAGE" >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV - - name: Create package - # Change into the artifacts directory to avoid including the directory itself in the zip archive - working-directory: SoundCloudDownloader/ - run: zip -r ../SoundCloudDownloader.zip . - - name: Create release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}