From 766f1df52abc068c5bfd10d347883e19af8342f1 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sun, 14 Mar 2021 22:37:52 +0100 Subject: Hide workflow file --- .github/workflows/.build.yml | 38 ++++++++++++++++++++++++++++++++++++++ .github/workflows/build.yml | 38 -------------------------------------- 2 files changed, 38 insertions(+), 38 deletions(-) create mode 100644 .github/workflows/.build.yml delete mode 100644 .github/workflows/build.yml (limited to '.github') diff --git a/.github/workflows/.build.yml b/.github/workflows/.build.yml new file mode 100644 index 0000000..639e68c --- /dev/null +++ b/.github/workflows/.build.yml @@ -0,0 +1,38 @@ +name: Build +on: + # - push + # - pull_request + +jobs: + build: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v12 + with: + nix_path: nixpkgs=channel:nixos-unstable + install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20201221_9fab14a/install + + - run: nix-shell -p lowdown --run ./gen + + - name: Deploy to Netlify + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + uses: nwtgck/actions-netlify@v1.1 + with: + publish-dir: './dest' + production-branch: master + github-token: ${{ secrets.GITHUB_TOKEN }} + deploy-message: "Deploy from GitHub Actions" + enable-pull-request-comment: true + enable-commit-comment: true + overwrites-pull-request-comment: true + + # - name: Deploy 🚀 + # uses: JamesIves/github-pages-deploy-action@3.7.1 + # with: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # BRANCH: gh-pages # The branch the action should deploy to. + # FOLDER: build # The folder the action should deploy. + # CLEAN: true # Automatically remove deleted files from the deploy branch diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 639e68c..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Build -on: - # - push - # - pull_request - -jobs: - build: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - uses: cachix/install-nix-action@v12 - with: - nix_path: nixpkgs=channel:nixos-unstable - install_url: https://github.com/numtide/nix-flakes-installer/releases/download/nix-2.4pre20201221_9fab14a/install - - - run: nix-shell -p lowdown --run ./gen - - - name: Deploy to Netlify - env: - NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} - NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} - uses: nwtgck/actions-netlify@v1.1 - with: - publish-dir: './dest' - production-branch: master - github-token: ${{ secrets.GITHUB_TOKEN }} - deploy-message: "Deploy from GitHub Actions" - enable-pull-request-comment: true - enable-commit-comment: true - overwrites-pull-request-comment: true - - # - name: Deploy 🚀 - # uses: JamesIves/github-pages-deploy-action@3.7.1 - # with: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # BRANCH: gh-pages # The branch the action should deploy to. - # FOLDER: build # The folder the action should deploy. - # CLEAN: true # Automatically remove deleted files from the deploy branch -- cgit 1.4.1