excluded .gitlab-ci.yml von .gitignore

This commit is contained in:
Andreas Hnida 2024-02-28 06:04:15 +00:00
commit 25b75a925b
2 changed files with 1 additions and 39 deletions

2
.gitignore vendored
View file

@ -24,7 +24,7 @@ yarn.lock
netlify.toml netlify.toml
vercel.json vercel.json
vercel-build.sh vercel-build.sh
.gitlab-ci.yml
# don't ignore public/php # don't ignore public/php
!public/php !public/php

View file

@ -1,38 +0,0 @@
stages:
- build
variables:
HUGO_ENV: production
HUGO_VERSION: "0.121.2"
GO_VERSION: "1.20.5"
NODE_VERSION: "18.16.1"
cache:
paths:
- node_modules/
default:
image: node:${NODE_VERSION}
before_script:
- echo "USING NODE ${NODE_VERSION}"
- apt-get update && apt-get install -y curl
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
- tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
- mv hugo /usr/local/bin/
- rm hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
- echo "HUGO ${HUGO_VERSION} INSTALLED"
- curl -LO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz"
- tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go${GO_VERSION}.linux-amd64.tar.gz
- echo "GO ${GO_VERSION} INSTALLED"
- npm install
pages:
stage: build
script:
- npm run project-setup
- npm run build
artifacts:
paths:
- public