We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b697985 commit a627dfaCopy full SHA for a627dfa
1 file changed
.github/workflows/release-oci.yaml
@@ -0,0 +1,21 @@
1
+name: "Release -- OCI"
2
+on:
3
+ push:
4
+ tags:
5
+ - "ocimethod*"
6
+ workflow_dispatch:
7
+
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - name: "Publish features to OCI"
15
+ uses: ./.github/devcontainers-action # TODO: Once 'devcontainers/action' is published, use that.
16
+ with:
17
+ publish-features: "true"
18
+ publish-to-oci: "true" # EXPERIMENTAL!!!!
19
+ base-path-to-features: "./src"
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments