Skip to content

Commit

Permalink
Merge pull request #109 from opsgenie/BIF-1575-Fix-upload-artifact
Browse files Browse the repository at this point in the history
BIF-1575: Fix github deprecation notice
  • Loading branch information
ertugrulsmz authored Sep 18, 2024
2 parents e9beb92 + d1eb2ee commit 92c67e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
cd .release/oec-linux/
zip -r opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-linux-amd64.zip ./${{ env.INTEGRATION_FOLDER }}
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Linux Artifact
path: .release/oec-linux/*.zip
Expand Down Expand Up @@ -164,12 +164,12 @@ jobs:
- name: Move RHEL6 Package
run: mv ~/rpmbuild/RPMS/x86_64/opsgenie-${{ env.INTEGRATION_NAME }}-rhel6-${{ env.INTEGRATION_VERSION }}-1.x86_64.rpm .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
- name: Upload RPM Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: RPM Artifact
path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
- name: Upload RHEL6 Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: RHEL6 Artifact
path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
- name: Move Deb Package
run: mv .release/deb-package/*.deb .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Debian Artifact
path: .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
cd .release/oec-win32/
zip -r ${{ env.INTEGRATION_FOLDER }}.zip ./${{ env.INTEGRATION_FOLDER }}
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Win32 Artifact
path: .release/oec-win32/*.zip
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
cd .release/oec-win64/
zip -r ${{ env.INTEGRATION_FOLDER }}.zip ./${{ env.INTEGRATION_FOLDER }}
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Win64 Artifact
path: .release/oec-win64/*.zip
Expand Down

0 comments on commit 92c67e6

Please sign in to comment.