diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml new file mode 100644 index 0000000..be6baee --- /dev/null +++ b/.github/workflows/deploy-dev.yml @@ -0,0 +1,40 @@ +name: Deploy website to dev server + +on: + push: + branches-ignore: + - main + pull_request: + branches-ignore: + - main + +jobs: + deploy: + runs-on: ubuntu-22.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v4 + 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: '0.119.0' + extended: true + + - name: Build + run: echo ${{ github.ref.name }} + # run: hugo --minify -b https://dev.ff.berlin --destination dev/${{ github.ref.name }} + + # - name: Deploy + # uses: appleboy/scp-action@master + # with: + # host: ${{ secrets.PRODUCTION_SERVER }} + # username: ${{ secrets.PRODUCTION_USERNAME }} + # key: ${{ secrets.PRODUCTION_SSH_KEY }} + # source: "public/" + # target: ${{ secrets.PRODUCTION_WEBROOT }} + # strip_components: 1 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy-prod.yml similarity index 93% rename from .github/workflows/deploy.yml rename to .github/workflows/deploy-prod.yml index d303d3b..d91b664 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy-prod.yml @@ -1,9 +1,9 @@ -name: Deploy Website +name: Deploy website to production server on: push: branches: - - hugo # Set a branch to deploy + - main pull_request: jobs: