fix updater #185
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
name: Test | |
on: | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Create test project | |
run: | | |
cd .github/workflows/ | |
cargo new marco-test-one | |
cd marco-test-one | |
git init | |
git config --global user.email "test@example.com" | |
git config --global user.name "Test" | |
git add . | |
git commit -m "first commit" | |
git remote add origin https://github.com/Test/release-plz-test.git | |
- name: Run release-plz | |
uses: ./ # Uses an action in the root directory | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
project_manifest: .github/workflows/marco-test-one/Cargo.toml |