mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
Update update_deps.yml
Use single quotes in YAML
This commit is contained in:
14
.github/workflows/update_deps.yml
vendored
14
.github/workflows/update_deps.yml
vendored
@@ -37,21 +37,21 @@ jobs:
|
||||
- opensuse15-x64
|
||||
steps:
|
||||
- name: install llvm on suse-based
|
||||
if: startsWith(matrix.platform, "opensuse")
|
||||
if: startsWith(matrix.platform, 'opensuse')
|
||||
run: |
|
||||
zypper install -y -t llvm
|
||||
- name: install llvm on redhat-based
|
||||
if: >
|
||||
startsWith(matrix.platform, "amazonlinux") ||
|
||||
startsWith(matrix.platform, "centos") ||
|
||||
startsWith(matrix.platform, "fedora") ||
|
||||
startsWith(matrix.platform, "fedora")
|
||||
startsWith(matrix.platform, 'amazonlinux') ||
|
||||
startsWith(matrix.platform, 'centos') ||
|
||||
startsWith(matrix.platform, 'fedora') ||
|
||||
startsWith(matrix.platform, 'fedora')
|
||||
run: |
|
||||
yum install -y llvm
|
||||
- name: install llvm on debian-based
|
||||
if: >
|
||||
startsWith(matrix.platform, "debian") ||
|
||||
startsWith(matrix.platform, "ubuntu")
|
||||
startsWith(matrix.platform, 'debian') ||
|
||||
startsWith(matrix.platform, 'ubuntu')
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -yq llvm
|
||||
|
||||
Reference in New Issue
Block a user