PORT-5028 Fixed project fetching bug (#183) #246
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: Release integrations | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
release-all: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.DOCKER_MACHINE_USER }} | |
password: ${{ secrets.DOCKER_MACHINE_TOKEN }} | |
- name: Build and push Docker image | |
run: | | |
GHCR_TOKEN=$(echo ${{ secrets.GITHUB_TOKEN }} | base64) | |
files=$(find integrations/*/.port -name "spec.yaml") | |
for file in $files; do | |
# Get the type from ocean-spec.yaml | |
type=$(yq eval '.type' "$file") | |
folder=$(dirname "$file") | |
# Get the version from pyproject.toml | |
version=$(grep -E '^version = ".*"' "$folder/../pyproject.toml" | cut -d'"' -f2) | |
# Check if the version exists in the ghcr.io registry | |
MANIFEST=$(curl -s -o /dev/null -w "%{http_code}" -H "Authorization: Bearer ${GHCR_TOKEN}" "https://ghcr.io/v2/port-labs/port-ocean-$type/manifests/$version") | |
if [ "$MANIFEST" = "200" ]; then | |
echo "Image already exists in $repository: port-ocean-$type:$version" | |
else | |
# Check if the 'version' variable contains any character other than digits and "." | |
if [[ ! "$version" =~ ^[0-9.]+$ ]]; then | |
# If 'version' contains non-numeric and non-dot characters, skip building 'latest' tag | |
echo "Version contains non-numeric characters. Building without 'latest' tag." | |
docker build -t "ghcr.io/port-labs/port-ocean-$type:$version" "$folder/.." | |
else | |
# If 'version' contains only digits and dots, build with both 'latest' and version tags | |
docker build -t "ghcr.io/port-labs/port-ocean-$type:$version" -t "ghcr.io/port-labs/port-ocean-$type:latest" "$folder/.." | |
fi | |
docker push "ghcr.io/port-labs/port-ocean-$type" --all-tags | |
fi | |
done | |
- name: Configure AWS Credentials 🔒 | |
id: aws-credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Upload specifications to s3 | |
run: | | |
# Temporary file to store the concatenated YAML content | |
temp_file="temp.yaml" | |
# Output file name | |
output_file="index.json" | |
# AWS S3 bucket details | |
aws_s3_bucket="ocean-registry" | |
# Find all ocean-spec.yaml files under the specified directory | |
find integrations/*/.port -type f -name "spec.yaml" > file_list.txt | |
# Concatenate the YAML files into a temporary file | |
while IFS= read -r file; do | |
# Extract the version from pyproject.toml | |
integration_dir=$(dirname "$file") | |
version=$(grep -E '^version = ".*"' "$integration_dir/../pyproject.toml" | cut -d'"' -f2) | |
echo "- " >> "$temp_file" | |
sed 's/^/ /' "$file" >> "$temp_file" | |
echo " version: $version" >> "$temp_file" | |
done < file_list.txt | |
yq -j . < "$temp_file" > "$output_file" | |
aws s3 cp "$output_file" "s3://$aws_s3_bucket/$output_file" |