Fix external references for data components and techniques #4
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: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Copy configuration file | |
run: cp default-config.yml config.yml | |
- name: Create output | |
run: python3 . -o MITRE | |
- name: Create dist directory | |
run: mkdir dist | |
- name: Create zip | |
run: zip -r dist/release.zip MITRE README.md | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dist/* |