diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb3c864..47f351f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,4 +59,14 @@ jobs: upload_url: ${{ needs.create_release.outputs.upload_url }} asset_path: ./target/release/${{ matrix.asset_name }} asset_name: ${{ matrix.asset_name }} - asset_content_type: application/tar+gzip \ No newline at end of file + asset_content_type: application/tar+gzip + - name: upload example config file + id: upload-release-assets + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./example/fakejson.yaml + asset_name: config.yaml + asset_content_type: application/text \ No newline at end of file diff --git a/example/dns.yaml b/example/fakejson.yaml similarity index 100% rename from example/dns.yaml rename to example/fakejson.yaml