Only trigger release for v* and latest git tags and add git to base
All checks were successful
/ build (push) Successful in 3m30s
All checks were successful
/ build (push) Successful in 3m30s
image's PATH
This commit is contained in:
parent
1d5aab6a8e
commit
99aeaeb6ff
4 changed files with 9 additions and 18 deletions
|
@ -15,15 +15,17 @@ jobs:
|
|||
- name: Prepare requirements
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg zstd clang
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
|
||||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update
|
||||
apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Test docker image build
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
- "latest"
|
||||
- "v*"
|
||||
env:
|
||||
IMAGE_TAG_PRIVATE: git.myservermanager.com/msm/forgejo-base-executor-image
|
||||
FORGEJO_FQDN: git.myservermanager.com
|
||||
|
@ -14,7 +15,7 @@ jobs:
|
|||
- name: Prepare requirements
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg zstd clang
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
|
||||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update
|
||||
|
@ -33,12 +34,6 @@ jobs:
|
|||
username: ${{ secrets.FORGEJO_USER }}
|
||||
password: ${{ secrets.FORGEJO_TOKEN }}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USER }}
|
||||
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||
|
||||
- name: Build docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
|
|
|
@ -8,12 +8,12 @@ jobs:
|
|||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:3.18
|
||||
image: node:20-bookworm
|
||||
steps:
|
||||
- name: Prepare requirements
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg zstd clang
|
||||
apt-get install -y curl wget bash apt-transport-https ca-certificates gnupg
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
|
||||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update
|
||||
|
@ -32,12 +32,6 @@ jobs:
|
|||
username: ${{ secrets.FORGEJO_USER }}
|
||||
password: ${{ secrets.FORGEJO_TOKEN }}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USER }}
|
||||
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||
|
||||
- name: Build docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
|
|
|
@ -3,7 +3,7 @@ LABEL maintainer="msm <hostmaster@myservermanager.com>"
|
|||
|
||||
RUN <<EOF
|
||||
apt-get update
|
||||
apt-get install -y --no-install-recommends curl wget bash apt-transport-https ca-certificates gnupg nodejs npm
|
||||
apt-get install -y --no-install-recommends curl wget bash apt-transport-https ca-certificates gnupg nodejs npm git
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
|
||||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
apt-get update
|
||||
|
|
Loading…
Reference in a new issue