Commit e626ada4 authored by Ashim Shrestha's avatar Ashim Shrestha
Browse files

remove yml file

parent ec4a610e
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
# # .gitlab-ci.yml in massonite-socket-client
# stages:
#   - build
#   - package
#   - publish

# create-package:
#   stage: package
#   image: node:18
#   script:
#     - npm ci
#     - npm run build
#     - npm pack
#   artifacts:
#     paths:
#       - masonite-broadcast-client-*.tgz
#     expire_in: 1 week

# publish-package:
#   stage: publish
#   image: node:18
#   script:
#     # Upload to GitLab Package Registry
#     - |
#       PACKAGE_FILE=$(ls masonite-broadcast-client-*.tgz)
#       curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" \
#            --upload-file "${PACKAGE_FILE}" \
#            "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/masonite-broadcast-client/${CI_COMMIT_TAG}/${PACKAGE_FILE}"
#   only:
#     - tags # Only publish on version tags