Skip to content

Commit

Permalink
chore: test env feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ahn-dxc committed Jun 26, 2023
1 parent 2cd249c commit 02e9e15
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/envs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test envs feature

on:
push:
branches:
- envs
jobs:
env-dev:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
environment:
name: dev
url: https://google.com

steps:
- run: |
echo "dev"
env-test:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
environment:
name: test
url: https://github.com/

steps:
- run: |
echo "test"

0 comments on commit 02e9e15

Please sign in to comment.