Skip to content

Fix typo in phone field in organization members data

5ed39c5
Select commit
Loading
Failed to load commit list.
Open

přidání čísla účtu a fix telefonu Milana Vítka #1447

Fix typo in phone field in organization members data
5ed39c5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Dec 9, 2025 in 4m 27s

Build Passed

The build passed.

Details

This is a normal build for the preview-cislo-uctu branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Jammy)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "version": "~> 1.0",
  "gemfile": [
    "web-core/Gemfile"
  ],
  "git": {
    "depth": false
  },
  "addons": {
    "apt": {
      "sources": [
        {
          "sourceline": "ppa:inkscape.dev/stable"
        }
      ],
      "packages": [
        "inkscape",
        "imagemagick"
      ]
    }
  },
  "before_install": [
    "git clone --depth=1 https://github.com/MestreLion/git-tools",
    "./git-tools/git-restore-mtime --force",
    "rm -rf ./git-tools"
  ],
  "install": [
    "make bundle-install"
  ],
  "script": [
    "make check"
  ],
  "env": [
    "global={:NOKOGIRI_USE_SYSTEM_LIBRARIES=>\"true\"}"
  ],
  "cache": {
    "bundler": true,
    "directories": [
      "$TRAVIS_BUILD_DIR/web-core/vendor",
      "$TRAVIS_BUILD_DIR/web-core/.cache",
      "$TRAVIS_BUILD_DIR/web-core/assets/generated",
      "$TRAVIS_BUILD_DIR/web-core/assets/studies",
      "$TRAVIS_BUILD_DIR/web-core/assets/covers"
    ]
  },
  "before_deploy": [
    "wget -q --output-document=web-core/firebase https://firebase.tools/bin/linux/latest",
    "chmod +x web-core/firebase"
  ],
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "on": {
        "branch": [
          "master"
        ]
      },
      "skip_cleanup": true,
      "script": "make deploy-production"
    },
    {
      "provider": "script",
      "edge": true,
      "on": {
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH = preview-*"
        ]
      },
      "skip_cleanup": true,
      "script": "make deploy-preview"
    }
  ]
}