Skip to content

Update the AWS logs hint (#199) #295

Update the AWS logs hint (#199)

Update the AWS logs hint (#199) #295

Workflow file for this run

name: update latest release
on:
push:
branches:
- master
jobs:
filter_for_configs:
name: Filter for configs folder changes
runs-on: ubuntu-latest
outputs:
configs: ${{ steps.filter.outputs.configs }}
steps:
- uses: actions/checkout@v3
- name: Set filter
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
configs:
- 'configs/**'
update_latest:
name: Update latest release
needs: filter_for_configs
permissions:
contents: write # Allows pushing changes to the repository
attestations: write # Allows adding and updating artifact attestations
if: ${{ needs.filter_for_configs.outputs.configs == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Build manifest
uses: jannekem/run-python-script-action@v1
with:
script: |
import os, json
configs = []
entries = os.scandir('configs')
sorted_entries = sorted(entries, key=lambda x: x.name)
for filename in sorted_entries:
with open(filename, mode='r', encoding='utf-8') as file:
configs.append(json.load(file))
with open("manifest.json", mode='w', encoding='utf-8') as f:
f.truncate(0)
json.dump(configs, f)
- name: Update latest release
uses: meeDamian/github-release@2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: latest
tag: latest
allow_override: true
prerelease: true
files: manifest.json
gzip: false