diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-09-18 13:08:57 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2023-09-25 09:43:37 +0200 |
| commit | d4c60c8a0c566cf9f605a3b3e431ea8b51d1d4c8 (patch) | |
| tree | 612b997a5f9fa1392646fb04626bea5d5f12555d | |
| parent | 836ea4654ff9bf389856d0030b28983c99286f0d (diff) | |
Docker + Workflows: Move to deploy repo
| -rw-r--r-- | .github/workflows/test.yml | 4 | ||||
| -rw-r--r-- | ci/docker/eduvpnserver.docker | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9930eb7..0b48c27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,8 +29,8 @@ jobs: - uses: actions/checkout@v3 - name: Setup server run: | - git clone https://github.com/eduvpn/documentation - cd documentation + git clone https://codeberg.org/eduvpn/deploy + cd deploy sudo cp resources/repo+v3@eduvpn.org.asc /etc/apt/trusted.gpg.d/repo+v3@eduvpn.org.asc echo "deb https://repo.eduvpn.org/v3/deb jammy main" | sudo tee /etc/apt/sources.list.d/eduVPN_v3.list sudo apt-get -y update diff --git a/ci/docker/eduvpnserver.docker b/ci/docker/eduvpnserver.docker index c6c0e23..d615918 100644 --- a/ci/docker/eduvpnserver.docker +++ b/ci/docker/eduvpnserver.docker @@ -1,6 +1,6 @@ FROM fedora:38 -# This dockerfile was adapted from https://github.com/eduvpn/documentation/blob/v3/deploy_fedora.sh +# This dockerfile was adapted from https://codeberg.og/eduvpn/deploy/src/branch/v3/deploy_fedora.sh # DO NOT USE THIS IN PRODUCTION, ONLY FOR TESTING # Install git to clone the documentation repo @@ -8,10 +8,10 @@ RUN dnf -y install git WORKDIR /eduvpn -# Clone the documentation -RUN git clone https://github.com/eduvpn/documentation +# Clone the deploy +RUN git clone https://codeberg.org/eduvpn/deploy -WORKDIR /eduvpn/documentation +WORKDIR /eduvpn/deploy # Checkout v3 branch RUN git checkout v3 |
