workaround broken Ceph debian-reef url (#161) #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Promote image manifest | |
on: | |
push: | |
tags: | |
- "**" | |
jobs: | |
publish_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install s3cmd | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y s3cmd | |
- name: Download manifest for commit | |
run: ./bin/download-manifest | |
env: | |
MANIFEST_FILE: manifest.json | |
ENVIRONMENT: arcus | |
ENV_VAR_FILES: common | |
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} | |
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} | |
- name: Publish manifest to release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: manifest.json |