conductor-install 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,47 +0,0 @@
1
- on:
2
- push:
3
- branches:
4
- - main
5
-
6
- permissions:
7
- contents: write
8
- issues: write
9
- pull-requests: write
10
-
11
- name: release-please
12
-
13
- jobs:
14
- release-please:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: googleapis/release-please-action@v4
18
- id: release
19
- with:
20
- target-branch: ${{ github.ref_name }}
21
- token: ${{ secrets.BOT_RELEASE_TOKEN }}
22
-
23
- - name: Checkout code
24
- if: ${{ steps.release.outputs.release_created }}
25
- uses: actions/checkout@v4
26
-
27
- - name: Create TAR archive
28
- if: ${{ steps.release.outputs.release_created }}
29
- run: |
30
- tar -czvf ../conductor-release.tar.gz \
31
- --exclude='.git' \
32
- --exclude='.github' \
33
- --exclude='release-please-config.json' \
34
- --exclude='.release-please-manifest.json' \
35
- --exclude='.gitignore' \
36
- --exclude='CONTRIBUTING.md' \
37
- .
38
- mv ../conductor-release.tar.gz .
39
-
40
- - name: Upload archive to GitHub Release
41
- if: ${{ steps.release.outputs.release_created }}
42
- env:
43
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
- run: |
45
- gh release upload \
46
- ${{ steps.release.outputs.tag_name }} \
47
- conductor-release.tar.gz
@@ -1,3 +0,0 @@
1
- {
2
- ".": "0.2.0"
3
- }