diff options
author | Josh Spicer <joshspicer@github.com> | 2022-08-03 21:09:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 21:09:28 +0300 |
commit | 145f26f8b27ed61667c759d3eebad71778773d78 (patch) | |
tree | 26d22d9c36943847bc1393eba4c1ce025238328d /.github | |
parent | 73db1be5838cc7b71e083819cb50c25b210a6bdc (diff) |
remove unused dirs (#76)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release-v1.yaml | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/.github/workflows/release-v1.yaml b/.github/workflows/release-v1.yaml deleted file mode 100644 index adbfab9..0000000 --- a/.github/workflows/release-v1.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: "(Release-v1) Package dev container features (v1)" -on: - push: - tags: - - "v0.0.1" - workflow_dispatch: - -jobs: - deploy: # make sure the action works on a clean machine without building - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Combine Feature Fragments - run: ./v1/combine-feature-fragments.py > ./devcontainer-features.json - - - name: Copy scripts to src folder - id: copy_scripts - run: cp -r ./v1/install.sh ./v1/feature-scripts.env ./devcontainer-features.json ./src - - - name: Debug Output - run: sudo apt install tree -y && tree - - - name: Generate tgz - uses: microsoft/publish-dev-container-features-action@main - with: - publish-features: "true" - path-to-features: "./src" - publish-definitions: "false" - - - uses: actions/upload-artifact@v3 - with: - name: devcontainer-features.tgz - path: devcontainer-features.tgz - - - name: Get or Create Release at current tag - uses: ncipollo/release-action@v1 - with: - allowUpdates: true # Lets us upload our own artifact from previous step - artifactErrorsFailBuild: true - artifacts: "./devcontainer-*" - token: ${{ secrets.GITHUB_TOKEN }} |