-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbd30f0
commit 20cec1a
Showing
2 changed files
with
141 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,8 @@ jobs: | |
RUST_BACKTRACE: "full" | ||
|
||
steps: | ||
- run: git config --system core.longpaths true | ||
if: runner.os == 'Windows' | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
@@ -108,6 +110,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.PAT }} | ||
- uses: extractions/setup-just@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -160,7 +163,6 @@ jobs: | |
- name: Replace version | ||
run: just update-version "0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }}" | ||
|
||
|
||
- name: Build | ||
run: just build | ||
env: | ||
|
@@ -170,7 +172,6 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
||
- name: Create commit | ||
run: | | ||
git config --local user.name "GitHub Actions" | ||
|
@@ -179,28 +180,3 @@ jobs: | |
git commit -m "Release v0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }}" | ||
git tag "v0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }}" | ||
git push origin "v0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }}" | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "timings2_${{ runner.os }}" | ||
path: | | ||
target/cargo-timings/cargo-timing-*.html | ||
pulumi_wasm_generator_lib/tests/**/target/cargo-timings/cargo-timing-*.html | ||
- name: Package language plugin | ||
if: runner.os == 'Linux' | ||
run: just package-language-plugin "0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }}" | ||
- name: Publish to registry | ||
run: just publish | ||
env: | ||
CARGO_REGISTRIES_CLOUDSMITH_TOKEN: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
- name: Release | ||
uses: softprops/[email protected] | ||
with: | ||
name: 0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }} | ||
tag_name: v0.0.0-NIGHTLY-${{ steps.short-sha.outputs.sha }} | ||
fail_on_unmatched_files: true | ||
prerelease: true | ||
body: "" | ||
files: | | ||
pulumi_wasm_generator_lib/**/pulumi_providers/**/wasm32-wasip1/debug/*_provider.wasm | ||
target/wasm32-wasip1/debug/pulumi_wasm.wasm | ||
pulumi-language-wasm/*.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_BACKTRACE: "full" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
|
||
deploy_rust_registry: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: extractions/setup-just@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
with: | ||
version: "25.3" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: protoc --version | ||
|
||
- name: Publish to registry | ||
run: just publish | ||
env: | ||
CARGO_REGISTRIES_CLOUDSMITH_TOKEN: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
|
||
|
||
deploy_wasm_files: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Write release version | ||
run: | | ||
VERSION=${GITHUB_REF_NAME#v} | ||
echo Version: $VERSION | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: extractions/setup-just@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: cargo-bins/cargo-binstall@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install requirements | ||
run: just install-requirements | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
with: | ||
version: "25.3" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: protoc --version | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
shared-key: build | ||
save-if: false | ||
workspaces: | | ||
./ | ||
pulumi_wasm_generator_lib/tests/output/pulumi_providers/command/ | ||
pulumi_wasm_generator_lib/tests/output/pulumi_providers/docker/ | ||
pulumi_wasm_generator_lib/tests/output/pulumi_providers/random/ | ||
pulumi_wasm_generator_lib/tests/output/pulumi_tests/cyclic-types/ | ||
pulumi_wasm_generator_lib/tests/output/pulumi_tests/mini-awsnative/ | ||
- name: Build | ||
run: just build-wasm-components | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "timings_rust_wasm_${{ runner.os }}" | ||
path: | | ||
target/cargo-timings/cargo-timing-*.html | ||
pulumi_wasm_generator_lib/tests/**/target/cargo-timings/cargo-timing-*.html | ||
- name: Release | ||
uses: softprops/[email protected] | ||
with: | ||
name: ${{ env.VERSION }} | ||
tag_name: ${{ env.GITHUB_REF_NAME }} | ||
fail_on_unmatched_files: true | ||
prerelease: true | ||
body: "" | ||
files: | | ||
target/wasm32-wasip1/debug/*_provider.wasm | ||
target/wasm32-wasip1/debug/pulumi_wasm.wasm | ||
deploy_language_plugin: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Write release version | ||
run: | | ||
VERSION=${GITHUB_REF_NAME#v} | ||
echo Version: $VERSION | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: extractions/setup-just@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '^1.22.0' | ||
cache-dependency-path: "**/go.sum" | ||
- run: go version | ||
|
||
- name: Package language plugin | ||
if: runner.os == 'Linux' | ||
run: just package-language-plugin "$VERSION" | ||
|
||
- name: Release | ||
uses: softprops/[email protected] | ||
with: | ||
name: ${{ env.VERSION }} | ||
tag_name: ${{ env.GITHUB_REF_NAME }} | ||
fail_on_unmatched_files: true | ||
prerelease: true | ||
body: "" | ||
files: | | ||
pulumi-language-wasm/*.tar.gz |