Merge branch 'master' of gitlab.com:mythic-insight/legendary into dependabot-docker-node-16.5.0
This commit is contained in:
commit
e61dc10527
8 changed files with 14 additions and 9 deletions
|
@ -41,8 +41,13 @@ test_1.12.1:
|
||||||
build_image_for_commit:
|
build_image_for_commit:
|
||||||
stage: test
|
stage: test
|
||||||
image: "docker:20.10"
|
image: "docker:20.10"
|
||||||
only:
|
rules:
|
||||||
- master
|
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||||
|
when: on_success
|
||||||
|
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
||||||
|
changes:
|
||||||
|
- Dockerfile
|
||||||
|
when: on_success
|
||||||
services:
|
services:
|
||||||
- name: docker:20.10-dind
|
- name: docker:20.10-dind
|
||||||
before_script:
|
before_script:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM elixir:1.12.1-alpine AS elixir-builder
|
FROM elixir:1.12.2-alpine AS elixir-builder
|
||||||
|
|
||||||
RUN mix local.hex --force \
|
RUN mix local.hex --force \
|
||||||
&& mix local.rebar --force
|
&& mix local.rebar --force
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
defmodule Legendary.Admin.MixProject do
|
defmodule Legendary.Admin.MixProject do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@version "2.11.2"
|
@version "2.11.3"
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
defmodule Legendary.Content.MixProject do
|
defmodule Legendary.Content.MixProject do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@version "2.11.2"
|
@version "2.11.3"
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
defmodule Legendary.Core.MixProject do
|
defmodule Legendary.Core.MixProject do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@version "2.11.2"
|
@version "2.11.3"
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
|
|
|
@ -20,7 +20,7 @@ spec:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: app
|
- name: app
|
||||||
image: registry.gitlab.com/mythic-insight/legendary:2.11.2
|
image: registry.gitlab.com/mythic-insight/legendary:2.11.3
|
||||||
command: ["elixir"]
|
command: ["elixir"]
|
||||||
args:
|
args:
|
||||||
- "--name"
|
- "--name"
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -1,7 +1,7 @@
|
||||||
defmodule Legendary.Mixfile do
|
defmodule Legendary.Mixfile do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
@version "2.11.2"
|
@version "2.11.3"
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@mythic-insight/legendary",
|
"name": "@mythic-insight/legendary",
|
||||||
"version": "2.11.2",
|
"version": "2.11.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "The Legendary Phoenix Boilerplate.",
|
"description": "The Legendary Phoenix Boilerplate.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
|
Loading…
Reference in a new issue