correct timezone of pubDate #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish docker image | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
yarn --frozen-lockfile --network-timeout 1000000 | |
- name: Build | |
run: | | |
yarn build:web && yarn build:bundle | |
mv ./build ./bundled/ && mv ./bundled app && rm ./app/.gitignore | |
- name: Upload files to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mikanarr-${{ github.ref_name }} | |
path: | | |
./app | |
- name: Archive Release | |
uses: thedoctor0/[email protected] | |
if: github.event_name == 'release' | |
with: | |
type: 'zip' | |
filename: "mikanarr-${{ github.ref_name }}.zip" | |
directory: ./app | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
if: github.event_name == 'release' | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: "./app/mikanarr-${{ github.ref_name }}.zip" | |
asset_name: mikanarr-${{ github.ref_name }}.zip | |
tag: ${{ github.ref }} | |
build-docker: | |
needs: release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: mikanarr-${{ github.ref_name }} | |
path: ./app | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: list dir | |
run: | | |
ls -la | |
ls -la ./app | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
context: . | |
file: ./Dockerfile.ci | |
push: true | |
tags: | | |
izumiko/mikanarr:latest | |
izumiko/mikanarr:${{ github.ref_name }} |