aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com>2020-08-22 14:25:08 +0000
committergabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com>2020-08-22 14:25:08 +0000
commita99e7be0a6c7c725dc5156952e581bf3a903485c (patch)
tree8a6e69887c3eeac57442be0f8104e8d093b40808
parent7eb47472a169664a360c648dbf4f8bda50488953 (diff)
downloadgenpass-a99e7be0a6c7c725dc5156952e581bf3a903485c.tar.gz
genpass-a99e7be0a6c7c725dc5156952e581bf3a903485c.tar.bz2
genpass-a99e7be0a6c7c725dc5156952e581bf3a903485c.zip
fix: Remove github workflow
-rw-r--r--.github/action/Dockerfile15
-rwxr-xr-x.github/action/entrypoint.sh5
-rw-r--r--.github/workflows/push.yml26
-rw-r--r--.gitlab-ci.yml2
4 files changed, 2 insertions, 46 deletions
diff --git a/.github/action/Dockerfile b/.github/action/Dockerfile
deleted file mode 100644
index 988406c..0000000
--- a/.github/action/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM gabrielgio/genpass
-
-LABEL version="0.1.0"
-LABEL repository="https://github.com/gabrielgio/genpass.git"
-LABEL homepage="https://github.com/gabrielgio/genpass"
-LABEL maintainer="Gabriel Giovanini <gabriel.giovanini@protonmail.com>"
-
-LABEL com.github.actions.name="GitHub Action for lein with genpass dependencies"
-LABEL com.github.actions.description="Wraps the npm CLI to enable common lein commands."
-LABEL com.github.actions.icon="package"
-LABEL com.github.actions.color="red"
-
-COPY "entrypoint.sh" "/entrypoint.sh"
-ENTRYPOINT ["/entrypoint.sh"]
-CMD ["help"]
diff --git a/.github/action/entrypoint.sh b/.github/action/entrypoint.sh
deleted file mode 100755
index 83edd0a..0000000
--- a/.github/action/entrypoint.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-set -e
-
-sh -c "lein $*"
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
deleted file mode 100644
index 6381eb5..0000000
--- a/.github/workflows/push.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-on: push
-name: Build
-jobs:
- test:
- name: Test
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@master
- - name: Test
- uses: ./.github/action
- with:
- args: test
- - name: Coverage
- uses: ./.github/action
- with:
- args: cloverage --junit
- - name: Package
- uses: ./.github/action
- with:
- args: package
- - name: Deploy to pages
- uses: JamesIves/github-pages-deploy-action@master
- env:
- ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- BRANCH: gh-pages
- FOLDER: public
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9c682b5..3d38750 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,3 +1,5 @@
+image: clojure:lein-2.7.0
+
before_script:
- lein deps