diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2530d21..aae948b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,7 @@ jobs: - name: Set environment variables run: | echo "SCRIPTS_PATH=scripting" >> $GITHUB_ENV + mkdir package - name: Setup SourcePawn Compiler uses: rumblefrog/setup-sp@v1.0.1 @@ -34,5 +35,11 @@ jobs: - name: Compile EventQueueFix run: - spcomp -E -w234 -O2 -v2 -i include eventqueuefix.sp + spcomp -E -w234 -O2 -v2 -i include -o ../package/eventqueuefix.smx eventqueuefix.sp working-directory: ${{ env.SCRIPTS_PATH }} + + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: eventqueuefix-dev + path: package