Skip to content

Commit

Permalink
Update and rename blank.yml to actions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kindeep authored Feb 1, 2021
1 parent 0f22ea1 commit 9256a7d
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/blank.yml → .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


0 comments on commit 9256a7d

Please sign in to comment.