diff options
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 943d54f5..9c8c0953 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,8 @@ jobs: steps: # Initialization - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: '18' - run: npm ci @@ -23,7 +23,7 @@ jobs: # Create Chrome artifacts - name: Create Chrome artifacts run: npm run build:chrome - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: ChromeExtension path: dist @@ -34,7 +34,7 @@ jobs: # Create Firefox artifacts - name: Create Firefox artifacts run: npm run build:firefox - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: FirefoxExtension path: dist @@ -44,7 +44,7 @@ jobs: # Create Beta artifacts (Builds with the name changed to beta) - name: Create Chrome Beta artifacts run: npm run build:chrome -- --env stream=beta - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: ChromeExtensionBeta path: dist @@ -55,7 +55,7 @@ jobs: # Create Safari artifacts - name: Create Safari artifacts run: npm run build:safari - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: SafariExtension path: dist @@ -66,7 +66,7 @@ jobs: run: rm -rf ./dist - name: Create Edge artifacts run: npm run build:edge - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: EdgeExtension path: dist @@ -75,35 +75,35 @@ jobs: # Upload each release asset - name: Upload ChromeExtension to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: builds/ChromeExtension.zip name: ChromeExtension.zip path: ./builds/ChromeExtension.zip repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload ChromeExtensionBeta to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: builds/ChromeExtensionBeta.zip name: ChromeExtensionBeta.zip path: ./builds/ChromeExtensionBeta.zip repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload FirefoxExtension to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: builds/FirefoxExtension.zip name: FirefoxExtension.zip path: ./builds/FirefoxExtension.zip repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload SafariExtension to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: builds/SafariExtension.zip name: SafariExtension.zip path: ./builds/SafariExtension.zip repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload EdgeExtension to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: builds/EdgeExtension.zip name: EdgeExtension.zip @@ -113,7 +113,7 @@ jobs: # Firefox Beta - name: Create Firefox Beta artifacts run: npm run build:firefox -- --env stream=beta - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: FirefoxExtensionBeta path: dist @@ -130,13 +130,13 @@ jobs: run: sudo apt-get install rename - name: Rename signed file run: cd ./web-ext-artifacts ; rename 's/.*/FirefoxSignedInstaller.xpi/' * - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: FirefoxExtensionSigned.xpi path: ./web-ext-artifacts/FirefoxSignedInstaller.xpi - name: Upload FirefoxSignedInstaller.xpi to release - uses: Shopify/upload-to-release@master + uses: Shopify/upload-to-release@07611424e04f1475ddf550e1c0dd650b867d5467 with: args: web-ext-artifacts/FirefoxSignedInstaller.xpi name: FirefoxSignedInstaller.xpi |