4 Commits
1.0.0 ... 1.0.2

3 changed files with 7 additions and 6 deletions

View File

@@ -58,16 +58,16 @@ jobs:
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: src name: src
path: ./ path: ./data/
- name: Create zip - name: Create zip
uses: ihiroky/archive-action@v1 uses: ihiroky/archive-action@v1
with: with:
root_dir: ./ root_dir: ./data/
file_path: ipsec_exporter_${{ needs.check.outputs.version }}.zip file_path: ipsec_exporter_${{ needs.check.outputs.version }}.zip
- name: Create tar.gz - name: Create tar.gz
uses: ihiroky/archive-action@v1 uses: ihiroky/archive-action@v1
with: with:
root_dir: ./ root_dir: ./data/
file_path: ipsec_exporter_${{ needs.check.outputs.version }}.tar.gz file_path: ipsec_exporter_${{ needs.check.outputs.version }}.tar.gz
- name: Create Release - name: Create Release
id: create_release id: create_release
@@ -77,7 +77,7 @@ jobs:
with: with:
tag_name: ${{ needs.check.outputs.version }} tag_name: ${{ needs.check.outputs.version }}
release_name: ${{ needs.check.outputs.version }} release_name: ${{ needs.check.outputs.version }}
body_path: ./RELEASE.md body_path: ./data/RELEASE.md
draft: false draft: false
prerelease: false prerelease: false
- name: Upload zip archive - name: Upload zip archive

View File

@@ -1,6 +1,7 @@
from argparse import * from argparse import *
from src.prometheus_metrics_server import * from src.prometheus_metrics_server import *
from src.metrics_source import * from src.metrics_source import *
from src.metric import *
class App: class App:
args: Namespace args: Namespace