diff options
author | Astatin <[email protected]> | 2024-12-16 13:38:59 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-16 13:38:59 +0900 |
commit | 0686865aac60a1820279705d18a0d70faac456f2 (patch) | |
tree | 6ff1f517585f1e4e474dbb43f2e78b1a7e487b12 | |
parent | f9a3b62c0e5b0a302b9026cf2bece397bb9dbd1f (diff) |
Create go.yml
-rw-r--r-- | .github/workflows/go.yml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..9a5fc14 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,47 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v . + + - 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 }} + draft: false + prerelease: false + + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + asset_path: gameboy-asm + asset_name: gameboy-asm_linux-x86_64 + asset_content_type: application/x-elf |