We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java Workflow cat test.yml name: Java on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest permissions: write-all steps: - name: checking vars run: | ls -la echo "This is " > buildinfo.txt - name: Upload buildinfo file as artifact uses: actions/upload-artifact@v4 with: name: versioninfoartifact path: buildinfo.txt retention-days: 7 cat test1.yml name: Deploy on: workflow_run: workflows: Java types: [completed] jobs: build: runs-on: ubuntu-latest permissions: write-all steps: - name: Download artifact id: download-artifact uses: dawidd6/action-download-artifact@v6 with: workflow: "Java" name: versioninfoartifact
Java Workflow
cat test.yml name: Java on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest permissions: write-all steps: - name: checking vars run: | ls -la echo "This is " > buildinfo.txt - name: Upload buildinfo file as artifact uses: actions/upload-artifact@v4 with: name: versioninfoartifact path: buildinfo.txt retention-days: 7
cat test1.yml name: Deploy on: workflow_run: workflows: Java types: [completed] jobs: build: runs-on: ubuntu-latest permissions: write-all steps: - name: Download artifact id: download-artifact uses: dawidd6/action-download-artifact@v6 with: workflow: "Java" name: versioninfoartifact
Originally posted by @thatsk in #302
The text was updated successfully, but these errors were encountered:
https://github.com/testthatsk/test-junit/actions/workflows/test1.yml
Sorry, something went wrong.
Try workflow: test.yml.
workflow: test.yml
No branches or pull requests
Originally posted by @thatsk in #302
The text was updated successfully, but these errors were encountered: