Updates go.mods #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CURRENTLY JUST HELLO WORLD | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run a one-line script | |
run: echo Hello, world! | |
# Add to the end of the build action when ready | |
# - name: Build Wails App | |
# run: wails build # Your build command | |
# - name: Upload Artifacts | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: my-app | |
# path: path/to/your/build/output | |
# # Add additional steps for specific distribution methods here | |
# - 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 | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: ./path/to/your/build/output | |
# asset_name: my-app | |
# asset_content_type: application/zip |