Skip to content

Best version yet

Best version yet #42

Workflow file for this run

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