aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
blob: 33b062c3d8ec9027eb4bc3fbc71caea9e0495d6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: "Release dev container features (v2)"
on:
  push:
    tags:
      - "v0.0.2" # Temporary
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Generate tgz
        uses: ./.github/devcontainers-action # devcontainers/action
        with:
          publish-features: "true"
          base-path-to-features: "./src"

      - 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: "./*.tgz"
          token: ${{ secrets.GITHUB_TOKEN }}