diff --git a/.github/workflows/blank.yml b/.github/workflows/actions.yml similarity index 72% rename from .github/workflows/blank.yml rename to .github/workflows/actions.yml index 5170eec..327170d 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/actions.yml @@ -28,9 +28,17 @@ jobs: run: | ls javac Main.java - - - uses: actions/upload-artifact@v2 - with: - name: Compiled Java - path: Main.class + + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: New Release Yaay + draft: false + prerelease: false +