Skip to content
New issue

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

Feature/GitHub actions #30

Merged
merged 29 commits into from
Feb 8, 2021
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
04e3fe1
Add or update the App Service deployment workflow configuration from …
Test-Automation-Engineer Jan 10, 2021
781358a
install and use yarn
Test-Automation-Engineer Jan 10, 2021
3eecbb4
Use ubuntu-latest instead of windows-latest
Test-Automation-Engineer Jan 10, 2021
aab7ebf
Change buildstep name
Test-Automation-Engineer Jan 11, 2021
8629b41
Change workflow name
Test-Automation-Engineer Jan 11, 2021
ccd0137
Create feature-github-actions_nldsreactstorybook-staging.yml
Test-Automation-Engineer Jan 14, 2021
8f704be
Delete feature-github-actions_nldsreactstorybook-staging.yml
Test-Automation-Engineer Jan 14, 2021
0159b74
Create development_nldsreactstorybook-staging.yml
Test-Automation-Engineer Jan 14, 2021
b6acd4a
Update development_nldsreactstorybook-staging.yml
Test-Automation-Engineer Jan 14, 2021
c7c969e
Voeg de configuratie van de App Service-implementatiewerkstroom toe o…
Test-Automation-Engineer Jan 14, 2021
a772a09
Update and rename feature-github-actions_nldsreactstorybook.yml to ma…
Test-Automation-Engineer Jan 14, 2021
4d99497
Update master_nldsreactstorybook.yml
Test-Automation-Engineer Jan 14, 2021
33e7b29
Update feature-github-actions_nldsreactstorybook-test.yml
Test-Automation-Engineer Jan 14, 2021
3790ca9
Update development_nldsreactstorybook-staging.yml
Test-Automation-Engineer Jan 14, 2021
22e67d0
Update master_nldsreactstorybook.yml
Test-Automation-Engineer Jan 14, 2021
3e64524
Create ci.yml
Test-Automation-Engineer Jan 14, 2021
37968e4
Delete feature-github-actions_nldsreactstorybook-test.yml
Test-Automation-Engineer Jan 14, 2021
641fe17
Merge into one build and deploy yaml
Test-Automation-Engineer Jan 26, 2021
7804516
Deploy jobs must wait for build to finish
Test-Automation-Engineer Jan 27, 2021
3ddd499
Add new line at end of file
Test-Automation-Engineer Jan 28, 2021
67ffbfe
Add name for cicd yml
Test-Automation-Engineer Jan 28, 2021
3f4bc87
Build feature branches
Test-Automation-Engineer Jan 28, 2021
0533204
Merge branch 'development' into feature/github-actions
Test-Automation-Engineer Jan 28, 2021
a69b164
Remove building feature branches
Test-Automation-Engineer Jan 28, 2021
4a52796
Add upload and download artifact steps
Test-Automation-Engineer Feb 8, 2021
c0f1fc8
Merge branch 'development' into feature/github-actions
Test-Automation-Engineer Feb 8, 2021
6809dcd
Fix cicd.yaml
Test-Automation-Engineer Feb 8, 2021
3a43c47
indent cicd.yml
Test-Automation-Engineer Feb 8, 2021
55165df
Merge branch 'development' into feature/github-actions
Test-Automation-Engineer Feb 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: "14.x"

- name: yarn install, build storybook
run: |
npm install -g yarn
yarn install
yarn build-storybook

- name: Upload storybook
uses: actions/upload-artifact@v2
with:
name: storybook
path: storybook-static
- name: Upload storybook
uses: actions/upload-artifact@v2
with:
name: storybook
path: storybook-static

deploy-staging:
needs: build
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: storybook

- name: 'Deploy to Azure Web App'
uses: azure/webapps-deploy@v2
with:
Expand Down