Skip to content

Commit

Permalink
Updates to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pkendall64 committed Sep 10, 2023
1 parent b47f6ff commit acbacf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: macos-11
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Compile a release
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Compile a release
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: npm install && npm run dist
- name: Get supported target version artifacts
Expand All @@ -35,13 +35,13 @@ jobs:
sed -i~ "s/@GITHASH@/$GITHASH/" index.html
- name: Setup Pages
if: ${{ github.ref == 'refs/heads/master' }}
uses: actions/configure-pages@v1
uses: actions/configure-pages@v3
- name: Configure page artifact
if: ${{ github.ref == 'refs/heads/master' }}
run: mv dist _site
- name: Upload artifact
if: ${{ github.ref == 'refs/heads/master' }}
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2

deploy:
if: ${{ github.ref == 'refs/heads/master' }}
Expand Down

0 comments on commit acbacf9

Please sign in to comment.