diff options
author | Franck Cuny <franck@fcuny.net> | 2021-06-20 13:14:12 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-06-20 13:18:59 -0700 |
commit | 67b9cf67f3a109b625ddc33085ad636a2c4aaf79 (patch) | |
tree | fa8d2d319607c023a5857702fdb0ec7c42f63bad | |
parent | hugo: don't enable git info (diff) | |
download | fcuny.net-67b9cf67f3a109b625ddc33085ad636a2c4aaf79.tar.gz |
github: deploy to fly.io instead of GH pages
-rw-r--r-- | .github/workflows/gh-pages.yml | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 70e9ca8..bf3398a 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -7,24 +7,12 @@ on: jobs: deploy: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: 'latest' - # extended: true - - - name: Build - run: hugo --minify - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: superfly/flyctl-actions@master + env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs + args: "deploy" |