Migrate to Deno #16
Workflow file for this run
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: Deno Build | |
permissions: | |
"contents": "write" | |
on: | |
push: | |
branches: ["master", "main", "develop"] | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Install dependencies | |
run: | | |
deno install | |
- name: Compile | |
run: | | |
deno compile -o ./poke-guesser-bot -ERN src/main.ts | |
- name: Upload artifact (Windows) | |
if: startsWith(matrix.os, 'windows') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: poke-guesser-bot-${{ matrix.os }} | |
path: poke-guesser-bot.exe | |
- name: Upload artifact (Ubuntu and Mac) | |
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: poke-guesser-bot-${{ matrix.os }} | |
path: poke-guesser-bot | |
create-release: | |
needs: [build] | |
runs-on: ubuntu-latest | |
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Code | |
# Windows | |
- uses: actions/download-artifact@v4 | |
name: Download Windows | |
with: | |
name: poke-guesser-bot-windows-latest | |
path: release-artifacts/ | |
- name: Rename Windows Binary | |
run: mv release-artifacts/poke-guesser-bot.exe release-artifacts/poke-guesser-bot-Windows.exe | |
- uses: actions/download-artifact@v4 | |
name: Download Linux | |
with: | |
name: poke-guesser-bot-ubuntu-latest | |
path: release-artifacts/ | |
- name: Rename Linux Binary | |
run: mv release-artifacts/poke-guesser-bot release-artifacts/poke-guesser-bot-Linux | |
- uses: actions/download-artifact@v4 | |
name: Download Mac | |
with: | |
name: poke-guesser-bot-macos-latest | |
path: release-artifacts/ | |
- name: Rename Mac Binary | |
run: mv release-artifacts/poke-guesser-bot release-artifacts/poke-guesser-bot-Mac | |
- name: Create release | |
uses: ncipollo/release-action@v1.14.0 | |
with: | |
replacesArtifacts: true | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
artifacts: "release-artifacts/*" | |
body: ${{ github.event.head_commit.message }} | |
prerelease: true | |
name: Nightly Release | |
tag: nightly-build | |
- name: Update nightly-build tag | |
run: | | |
git tag -f nightly-build | |
git push -f origin nightly-build | |
shell: bash |