From 5b922b64c0909b839b76d2236b27dbe2047ccbf8 Mon Sep 17 00:00:00 2001 From: William Batista Date: Wed, 1 Nov 2023 17:08:19 -0400 Subject: [PATCH] Windows test --- .github/workflows/windows_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/windows_test.yml diff --git a/.github/workflows/windows_test.yml b/.github/workflows/windows_test.yml new file mode 100644 index 0000000..364c7b1 --- /dev/null +++ b/.github/workflows/windows_test.yml @@ -0,0 +1,18 @@ +name: Deploy to Fly +on: + push: + branches: [ "*" ] + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + deploy: + name: Deploy to Fly + runs-on: windows-latest + steps: + # This step checks out a copy of your repository. + - uses: actions/checkout@v3 + - run: curl -L https://flyio-pkgs.fly.dev/install.sh | sh -s pr2974 + - run: flyctl deploy --remote-only -a billy-rust + env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}