Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Oct 22, 2021
1 parent 5e9d812 commit b1d98b8
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 13 deletions.
54 changes: 53 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,59 @@
version: 2
updates:
- package-ecosystem: docker
directory: /
directory: /amd64
schedule:
interval: daily
time: "04:00"
timezone: Europe/Berlin
open-pull-requests-limit: 15
target-branch: dev
reviewers:
- marcauberer
assignees:
- marcauberer

- package-ecosystem: docker
directory: /i386
schedule:
interval: daily
time: "04:00"
timezone: Europe/Berlin
open-pull-requests-limit: 15
target-branch: dev
reviewers:
- marcauberer
assignees:
- marcauberer

- package-ecosystem: docker
directory: /armv6
schedule:
interval: daily
time: "04:00"
timezone: Europe/Berlin
open-pull-requests-limit: 15
target-branch: dev
reviewers:
- marcauberer
assignees:
- marcauberer

- package-ecosystem: docker
directory: /armv7
schedule:
interval: daily
time: "04:00"
timezone: Europe/Berlin
open-pull-requests-limit: 15
target-branch: dev
reviewers:
- marcauberer
assignees:
- marcauberer

- package-ecosystem: docker
directory: /arm64
schedule:
interval: daily
time: "04:00"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
chillibits/compose-generator-toolbox:i386-dev \
chillibits/compose-generator-toolbox:armv6-dev \
chillibits/compose-generator-toolbox:armv7-dev \
chillibits/compose-generator-toolbox:arm64-dev \
chillibits/compose-generator-toolbox:arm64-dev
docker manifest push chillibits/compose-generator-toolbox:dev
- name: Build manifest DHCR
Expand All @@ -106,5 +106,5 @@ jobs:
ghcr.io/chillibits/compose-generator-toolbox:i386-dev \
ghcr.io/chillibits/compose-generator-toolbox:armv6-dev \
ghcr.io/chillibits/compose-generator-toolbox:armv7-dev \
ghcr.io/chillibits/compose-generator-toolbox:arm64-dev \
ghcr.io/chillibits/compose-generator-toolbox:arm64-dev
docker manifest push ghcr.io/chillibits/compose-generator-toolbox:dev
3 changes: 1 addition & 2 deletions amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ RUN apk update && apk add --no-cache sudo=1.9.7_p1-r1 bash=5.1.4-r0 curl=7.79.1-
&& rm -rf /var/cache/apk/*

# Install required npm packages
RUN yarn config set network-timeout 600000 -g
RUN yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.8
Expand Down
3 changes: 1 addition & 2 deletions arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ RUN apk update && apk add --no-cache sudo=1.9.7_p1-r1 bash=5.1.4-r0 curl=7.79.1-
&& rm -rf /var/cache/apk/*

# Install required npm packages
RUN yarn config set network-timeout 600000 -g
RUN yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.8
Expand Down
3 changes: 1 addition & 2 deletions armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ RUN apk update && apk add --no-cache sudo=1.9.7_p1-r1 bash=5.1.4-r0 curl=7.79.1-
&& rm -rf /var/cache/apk/*

# Install required npm packages
RUN yarn config set network-timeout 600000 -g
RUN yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.8
Expand Down
3 changes: 1 addition & 2 deletions armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ RUN apk update && apk add --no-cache sudo=1.9.7_p1-r1 bash=5.1.4-r0 curl=7.79.1-
&& rm -rf /var/cache/apk/*

# Install required npm packages
RUN yarn config set network-timeout 600000 -g
RUN yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.8
Expand Down
3 changes: 1 addition & 2 deletions i386/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ RUN apk update && apk add --no-cache sudo=1.9.7_p1-r1 bash=5.1.4-r0 curl=7.79.1-
&& rm -rf /var/cache/apk/*

# Install required npm packages
RUN yarn config set network-timeout 600000 -g
RUN yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all
RUN yarn config set network-timeout 600000 -g && yarn global add @angular/cli @vue/cli create-react-app express-generator && yarn cache clean --all

# Install pip dependencies
RUN pip3 install --no-cache-dir flask-now==0.2.2 django==3.2.8
Expand Down

0 comments on commit b1d98b8

Please sign in to comment.