mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-21 23:44:30 +00:00
chore(build): skip e2e when building package ; fix app version
This commit is contained in:
parent
b48ab8201f
commit
9f8e1c29ce
5 changed files with 7 additions and 21 deletions
|
@ -4,7 +4,6 @@ stages:
|
|||
- install
|
||||
- check
|
||||
- build-js
|
||||
- sentry
|
||||
- test
|
||||
- build
|
||||
- upload
|
||||
|
@ -93,21 +92,6 @@ build-frontend:
|
|||
needs:
|
||||
- lint-front
|
||||
|
||||
sentry-commit:
|
||||
stage: sentry
|
||||
image: getsentry/sentry-cli
|
||||
script:
|
||||
- echo "Create a new release $CI_COMMIT_TAG"
|
||||
- sentry-cli releases new $CI_COMMIT_TAG
|
||||
- sentry-cli releases set-commits $CI_COMMIT_TAG --auto
|
||||
- sentry-cli releases files $CI_COMMIT_TAG upload-sourcemaps priv/static/assets/
|
||||
- sentry-cli releases finalize $CI_COMMIT_TAG
|
||||
- echo "Finalized release for $CI_COMMIT_TAG"
|
||||
needs:
|
||||
- build-frontend
|
||||
only:
|
||||
- tags@framasoft/mobilizon
|
||||
|
||||
deps:
|
||||
stage: check
|
||||
before_script:
|
||||
|
@ -162,6 +146,8 @@ vitest:
|
|||
|
||||
e2e:
|
||||
stage: test
|
||||
except:
|
||||
- tags@framasoft/mobilizon
|
||||
services:
|
||||
- name: postgis/postgis:16-3.4
|
||||
alias: postgres
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -1,7 +1,7 @@
|
|||
defmodule Mobilizon.Mixfile do
|
||||
use Mix.Project
|
||||
|
||||
@version "5.0.0-beta.1"
|
||||
@version "5.0.1"
|
||||
|
||||
def project do
|
||||
[
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "mobilizon",
|
||||
"version": "5.0.0-beta.1",
|
||||
"version": "5.0.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mobilizon",
|
||||
"version": "5.0.0-beta.1",
|
||||
"version": "5.0.1",
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"@apollo/client": "^3.3.16",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mobilizon",
|
||||
"version": "5.0.0-beta.1",
|
||||
"version": "5.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
|
2
test/fixtures/nodeinfo/data.json
vendored
2
test/fixtures/nodeinfo/data.json
vendored
|
@ -22,7 +22,7 @@
|
|||
},
|
||||
"software": {
|
||||
"name": "Mobilizon",
|
||||
"version": "5.0.0-beta.1",
|
||||
"version": "5.0.1",
|
||||
"repository": "https://framagit.org/framasoft/mobilizon"
|
||||
},
|
||||
"openRegistrations": true
|
||||
|
|
Loading…
Reference in a new issue