Commit 6baba649 by Leonard Gram Committed by GitHub

build: Fixed incorrect permissions for repo folders in ci-deploy. (#16360)

parent 6ef844da
......@@ -322,7 +322,7 @@ jobs:
deploy-enterprise-master:
docker:
- image: grafana/grafana-ci-deploy:1.2.1
- image: grafana/grafana-ci-deploy:1.2.2
steps:
- attach_workspace:
at: .
......@@ -347,7 +347,7 @@ jobs:
deploy-enterprise-release:
docker:
- image: grafana/grafana-ci-deploy:1.2.1
- image: grafana/grafana-ci-deploy:1.2.2
steps:
- checkout
- attach_workspace:
......@@ -380,7 +380,7 @@ jobs:
deploy-master:
docker:
- image: grafana/grafana-ci-deploy:1.2.1
- image: grafana/grafana-ci-deploy:1.2.2
steps:
- attach_workspace:
at: .
......@@ -411,7 +411,7 @@ jobs:
deploy-release:
docker:
- image: grafana/grafana-ci-deploy:1.2.1
- image: grafana/grafana-ci-deploy:1.2.2
steps:
- checkout
- attach_workspace:
......
......@@ -18,7 +18,9 @@ RUN pip install -U awscli crcmod && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* && \
ln -s /opt/google-cloud-sdk/bin/gsutil /usr/bin/gsutil && \
ln -s /opt/google-cloud-sdk/bin/gcloud /usr/bin/gcloud
ln -s /opt/google-cloud-sdk/bin/gcloud /usr/bin/gcloud && \
mkdir -p /deb-repo /rpm-repo && \
chown circleci:circleci /deb-repo /rpm-repo
COPY --from=0 /go/bin/aptly /usr/local/bin/aptly
......
#!/bin/bash
_version="1.2.1"
_version="1.2.2"
_tag="grafana/grafana-ci-deploy:${_version}"
docker build -t $_tag .
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment