Skip to content

Commit

Permalink
publish latest on every master change, development moved to nordlynx …
Browse files Browse the repository at this point in the history
…that is more maintenance free
  • Loading branch information
Julio Gutierrez committed Feb 13, 2022
1 parent 7d2d7c6 commit 412d8dc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 23 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,8 @@ jobs:
id: git
run: |
NAME=$(echo ${GITHUB_REF} | sed -e "s/.*\///g")
TAG=false
if [[ ${GITHUB_REF} == *"/tags/"* ]]; then
TAG=true
fi
echo name=${NAME} tag=${TAG} ref=${GITHUB_REF}
echo name=${NAME} ref=${GITHUB_REF}
echo "::set-output name=name::${NAME}"
echo "::set-output name=tag::${TAG}"
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down Expand Up @@ -53,7 +48,7 @@ jobs:
- name: Push latest
uses: docker/build-push-action@v2
if: steps.git.outputs.tag == 'true'
if: steps.git.outputs.name == 'master'
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
Expand All @@ -63,7 +58,7 @@ jobs:
- name: Update repo description
uses: peter-evans/dockerhub-description@v2
if: steps.git.outputs.tag == 'true'
if: steps.git.outputs.name == 'master'
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM s6on/ubuntu:20.04
LABEL maintainer="Julio Gutierrez [email protected]"

ARG NORDVPN_VERSION=3.12.3
ARG NORDVPN_VERSION=3.12.4
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y && \
Expand Down
1 change: 0 additions & 1 deletion rootfs/etc/fix-attrs.d/nord_utils
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/usr/bin/nord_config false root:root 0755 0755
/usr/bin/nord_connect false root:root 0755 0755
/usr/bin/nord_login false root:root 0755 0755
/usr/bin/nord_private_key false root:root 0755 0755
/usr/bin/nord_migrate false root:root 0755 0755
/usr/bin/nord_watch false root:root 0755 0755
2 changes: 1 addition & 1 deletion rootfs/etc/services.d/nordvpn/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ if [[ ! -d /run/nordvpn ]]; then
mkdir -m 0770 /run/nordvpn
fi

s6-notifyoncheck /usr/sbin/nordvpnd
s6-notifyoncheck /usr/sbin/nordvpnd > /dev/null
12 changes: 0 additions & 12 deletions rootfs/usr/bin/nord_private_key

This file was deleted.

0 comments on commit 412d8dc

Please sign in to comment.