Latest Testing #4
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
# This is a basic workflow to help you get started with Actions | |
name: Latest Testing | |
# Controls when the action will run. | |
on: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chrnorm/deployment-action@v2 | |
name: Create GitHub deployment | |
id: deployment | |
with: | |
token: '${{ secrets.GITHUB_TOKEN }}' | |
environment: testing | |
- name: Get latest deployment | |
uses: ./ | |
with: | |
environment: testing | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |